comparison lunalcd/Makefile @ 66:09d26f19a2c2

lunalcd: ppmtocmd program written
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 19 Mar 2020 01:38:57 +0000
parents cdf2c99e5025
children 286289d551ee
comparison
equal deleted inserted replaced
65:cdf2c99e5025 66:09d26f19a2c2
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= gen-st-init 3 PROGS= gen-st-init ppmtocmd
4 4
5 STINIT_OBJS= common.o initmain.o startek.o 5 STINIT_OBJS= common.o initmain.o startek.o
6 PPMCONV_OBJS= common.o ppmtocmd.o
6 7
7 all: ${PROGS} 8 all: ${PROGS}
8 9
9 gen-st-init: ${STINIT_OBJS} 10 gen-st-init: ${STINIT_OBJS}
10 ${CC} -o $@ ${STINIT_OBJS} 11 ${CC} -o $@ ${STINIT_OBJS}
11 12
13 ppmtocmd: ${PPMCONV_OBJS}
14 ${CC} -o $@ ${PPMCONV_OBJS}
15
12 clean: 16 clean:
13 rm -f ${PROGS} *.o 17 rm -f ${PROGS} *.o