1 # $Id: makefile.wnt 14098 2005-10-03 18:54:13Z jpf@u.washington.edu $
3 # ========================================================================
4 # Copyright 2006-2007 University of Washington
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
10 # http://www.apache.org/licenses/LICENSE-2.0
12 # ========================================================================
16 # Makefile for WIN NT version of libpithrgx.lib
24 #includes symbol info for debugging
26 LDEBUG= /DEBUG /DEBUGTYPE:CV
28 STDCFLAGS= -I..\include -nologo -MT -DWIN32 -DDOS -D_WINDOWS -DJOB_CONTROL -DMSC_MALLOC
30 CFLAGS= $(CDEBUG) $(STDCFLAGS) $(NET) $(EXTRACFLAGS)
32 LFLAGS= $(LDEBUG) $(EXTRALDFLAGS)
36 # switches for library building
38 LIBARGS=/nologo /verbose
40 HFILES= ../include/system.h ../include/general.h \
41 cclass.h cname.h regex2.h regex.h utils.h
43 OFILES= regcomp.obj regerror.obj regexec.obj regfree.obj
48 $(CC) -c $(CFLAGS) "$(MAKEDIR)"\$*.c
52 libregex.lib: $(OFILES)
53 $(RM) libregex.lib || rem
54 $(LIBER) /out:libregex.lib $(OFILES)