FreeCalypso > hg > freecalypso-reveng
annotate ticoff/Makefile @ 73:10f3fbff5e97
tiobjd: symbol table parsing implemented
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 25 Mar 2014 18:34:03 +0000 |
parents | c15cd3d695c0 |
children | 2eef88395908 |
rev | line source |
---|---|
70 | 1 CC= gcc |
2 CFLAGS= -O2 | |
3 PROG= tiobjd | |
71
c15cd3d695c0
tiobjd: successful parsing of the section header table
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
70
diff
changeset
|
4 OBJS= basics.o globals.o main.o tables.o |
c15cd3d695c0
tiobjd: successful parsing of the section header table
Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
parents:
70
diff
changeset
|
5 HDRS= filestruct.h globals.h intstruct.h |
70 | 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 |