comparison Makefile.gen @ 213:78f47ae47c2a

Fix Windows build.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 21 Nov 2010 00:18:59 +0200
parents 5ef630818bef
children 477449911cb1
comparison
equal deleted inserted replaced
212:f474ea264a5b 213:78f47ae47c2a
1 NN_VERSION := `cat VERSION`
2 1
3 CFLAGS+=-g -W -Wall -O2 -DTH_NO_DEFAULTS 2 CFLAGS+=-g -W -Wall -O2 -DTH_NO_DEFAULTS
4 #CFLAGS+=-g -W -Wall -DTH_NO_DEFAULTS 3 #CFLAGS+=-g -W -Wall -DTH_NO_DEFAULTS
5 COMP=$(CC) $(CFLAGS) 4 COMP=$(CC) $(CFLAGS)
5
6 #
7 # Version strings
8 #
9 NN_VERSION := $(shell cat VERSION)
10 comma:= ,
11 NN_VERSION_COM := $(subst .,$(comma),$(NN_VERSION))
6 12
7 # 13 #
8 # Objects 14 # Objects
9 # 15 #
10 NNCHAT_BIN=$(BINPATH)nnchat$(EXEEXT) 16 NNCHAT_BIN=$(BINPATH)nnchat$(EXEEXT)