1# w32cygnus_nmake.mak
2
3## NMakefile to build the CCCC project on the Win32/CygWinB20 platform.
4## See rules.mak for discussion of the meaning of the make variables
5## which this file defines
6
7# support for debugging (note that debug building is on by default)
8!IF "$(DEBUG)"=="true"
9CFLAGS_DEBUG=-g
10LDFLAGS_DEBUG=-g
11!ENDIF
12
13PATHSEP=\\
14CCC=cl.exe -nologo
15LD=cl.exe -nologo
16CFLAGS=-c -I$(PCCTS_H) $(CFLAGS_DEBUG) -GX -TP -DCCCC_CONF_W32VC
17C_OFLAG=-Fo
18LDFLAGS=$(LDFLAGS_DEBUG)
19LD_OFLAG=-Fe
20OBJEXT=obj
21CCCC_EXE=cccc.exe
22
23COPY=copy
24RM=del
25
26
27!INCLUDE rules.mak
28
29