1 # $Id: makefile.wnt 14098 2005-10-03 18:54:13Z jpf@u.washington.edu $
3 # ========================================================================
4 # Copyright 2013-2021 Eduardo Chappa
5 # Copyright 2006 University of Washington
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # ========================================================================
17 # Makefile for WIN NT version of libpithcc.lib
25 #includes symbol info for debugging
27 LDEBUG= /DEBUG /DEBUGTYPE:CV
29 STDCFLAGS= -I..\..\include -I../../regex -nologo -MT -DWIN32 -DDOS -D_WINDOWS -DJOB_CONTROL -DMSC_MALLOC
31 CFLAGS= $(CDEBUG) $(STDCFLAGS) $(NET) $(EXTRACFLAGS)
33 LFLAGS= $(LDEBUG) $(EXTRALDFLAGS)
37 # switches for library building
39 LIBARGS=/nologo /verbose
41 HFILES= ../../include/system.h ../../include/general.h \
44 OFILES= filesys.obj utf8.obj
49 $(CC) -c $(CFLAGS) "$(MAKEDIR)"\$*.c
53 libpithcc.lib: $(OFILES)
54 $(RM) libpithcc.lib || rem
55 $(LIBER) /out:libpithcc.lib $(OFILES)