FreeCalypso > hg > freecalypso-tools
comparison ffstools/tiffs-rd/Makefile @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sat, 11 Jun 2016 00:13:35 +0000 |
| parents | |
| children | a4afdada80fc |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:e7502631a0f9 |
|---|---|
| 1 CC= gcc | |
| 2 CFLAGS= -O2 | |
| 3 PROG= tiffs | |
| 4 OBJS= basics.o cat.o globals.o inode.o ls.o main.o object.o tree.o xtr.o | |
| 5 HDRS= globals.h pathname.h struct.h types.h | |
| 6 INSTBIN=/usr/local/bin | |
| 7 | |
| 8 all: ${PROG} | |
| 9 | |
| 10 ${PROG}: ${OBJS} | |
| 11 ${CC} -o $@ ${OBJS} | |
| 12 | |
| 13 ${OBJS}: ${HDRS} | |
| 14 | |
| 15 install: ${PROG} | |
| 16 mkdir -p ${INSTBIN} | |
| 17 install -c ${PROG} ${INSTBIN} | |
| 18 | |
| 19 clean: | |
| 20 rm -f ${PROG} *.o *.out *errs |
