diff 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
line wrap: on
line diff
--- a/lunalcd/Makefile	Thu Mar 19 01:31:05 2020 +0000
+++ b/lunalcd/Makefile	Thu Mar 19 01:38:57 2020 +0000
@@ -1,13 +1,17 @@
 CC=	gcc
 CFLAGS=	-O2
-PROGS=	gen-st-init
+PROGS=	gen-st-init ppmtocmd
 
 STINIT_OBJS=	common.o initmain.o startek.o
+PPMCONV_OBJS=	common.o ppmtocmd.o
 
 all:	${PROGS}
 
 gen-st-init:	${STINIT_OBJS}
 	${CC} -o $@ ${STINIT_OBJS}
 
+ppmtocmd:	${PPMCONV_OBJS}
+	${CC} -o $@ ${PPMCONV_OBJS}
+
 clean:
 	rm -f ${PROGS} *.o