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=\\
14PATH=\cygwin\bin
15CCC=$(PATH)\gcc.exe
16LD=$(PATH)\gcc.exe
17CFLAGS=-c -I$(PCCTS_H) $(CFLAGS_DEBUG) -x c++ -DCCCC_CONF_W32VC
18C_OFLAG=-o
19LDFLAGS=$(LDFLAGS_DEBUG)
20LD_OFLAG=-o
21OBJEXT=o
22CCCC_EXE=cccc.exe
23
24COPY=copy
25RM=del
26
27
28!INCLUDE rules.mak
29
30