FreeCalypso > hg > freecalypso-tools
comparison ffstools/cal2text/Makefile @ 142:d41edd329670
fc-cal2text utility written, compiles
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Mon, 27 Feb 2017 03:37:11 +0000 |
| parents | |
| children | 6d10869f7a1f |
comparison
equal
deleted
inserted
replaced
| 141:6b01d4ef85c3 | 142:d41edd329670 |
|---|---|
| 1 CC= gcc | |
| 2 CFLAGS= -O2 | |
| 3 PROG= fc-cal2text | |
| 4 OBJS= dircheck.o main.o mkdir.o rftablewr.o smallconv.o | |
| 5 INSTBIN=/opt/freecalypso/bin | |
| 6 | |
| 7 all: ${PROG} | |
| 8 | |
| 9 ${PROG}: ${OBJS} | |
| 10 ${CC} -o $@ ${OBJS} | |
| 11 | |
| 12 rftablewr.o: ../../rvinterf/tmsh/rftablewr.c | |
| 13 ${CC} ${CFLAGS} -c -o $@ $< | |
| 14 | |
| 15 install: ${PROG} | |
| 16 mkdir -p ${INSTBIN} | |
| 17 install -c ${PROG} ${INSTBIN} | |
| 18 | |
| 19 clean: | |
| 20 rm -f ${PROG} *.o *.out *errs |
