Mercurial > baum
comparison Makefile @ 2:557fa4df2bcd
added difference between char and number
author | meillo@marmaro.de |
---|---|
date | Thu, 07 Feb 2008 14:46:27 +0100 |
parents | 2f71d692d4f9 |
children | 3c64b5ac821b |
comparison
equal
deleted
inserted
replaced
1:3da0ff17c8e7 | 2:557fa4df2bcd |
---|---|
1 # common makefile | 1 # common makefile |
2 | 2 |
3 # program | 3 # program |
4 PROGRAM = baum | 4 PROGRAM = baum |
5 SRC = baum.c | 5 SRC = baum.c actions.c |
6 OBJ = ${SRC:.c=.o} | 6 OBJ = ${SRC:.c=.o} |
7 DEP = | 7 DEP = baum.h actions.h |
8 | 8 |
9 # compile env | 9 # compile env |
10 CC = gcc | 10 CC = gcc |
11 LD = ${CC} | 11 LD = ${CC} |
12 DEBUG = -g | 12 DEBUG = -g |