comparison ticoff/Makefile @ 71:c15cd3d695c0

tiobjd: successful parsing of the section header table
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sat, 22 Mar 2014 05:53:02 +0000
parents 6799a5c57a49
children 2eef88395908
comparison
equal deleted inserted replaced
70:6799a5c57a49 71:c15cd3d695c0
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROG= tiobjd 3 PROG= tiobjd
4 OBJS= basics.o globals.o main.o 4 OBJS= basics.o globals.o main.o tables.o
5 HDRS= filestruct.h globals.h 5 HDRS= filestruct.h globals.h intstruct.h
6 6
7 all: ${PROG} 7 all: ${PROG}
8 8
9 ${PROG}: ${OBJS} 9 ${PROG}: ${OBJS}
10 ${CC} -o $@ ${OBJS} 10 ${CC} -o $@ ${OBJS}