Add support for tab-completion when selecting by rule
[alpine.git] / regex / makefile.wnt
blob3d08888c252ce4c59c38250b520842ddba37849d
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
19 CC=cl
20 RM=del
21 CP=copy 
22 RC=rc
24 #includes symbol info for debugging 
25 CDEBUG= #-Zi -Od
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)
34 RCFLAGS =
36 # switches for library building
37 LIBER=lib
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
45 all:            libregex.lib
47 .c.obj:
48         $(CC) -c $(CFLAGS) "$(MAKEDIR)"\$*.c
50 $(OFILES):      $(HFILES)
52 libregex.lib:   $(OFILES)
53                 $(RM) libregex.lib || rem
54                 $(LIBER) /out:libregex.lib $(OFILES)
56 clean:
57         $(RM) *.lib
58         $(RM) *.obj