FreeCalypso > hg > freecalypso-reveng
comparison ticoff/Makefile @ 70:6799a5c57a49
tiobjd started
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sat, 22 Mar 2014 02:29:22 +0000 |
parents | |
children | c15cd3d695c0 |
comparison
equal
deleted
inserted
replaced
69:10de8a00c519 | 70:6799a5c57a49 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= tiobjd | |
4 OBJS= basics.o globals.o main.o | |
5 HDRS= filestruct.h globals.h | |
6 | |
7 all: ${PROG} | |
8 | |
9 ${PROG}: ${OBJS} | |
10 ${CC} -o $@ ${OBJS} | |
11 | |
12 ${OBJS}: ${HDRS} | |
13 | |
14 clean: | |
15 rm -f *.o ${PROG} *err |