FreeCalypso > hg > freecalypso-hwlab
diff lunalcd/Makefile @ 67:286289d551ee
lunalcd: gen-ht-init added
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 19 Mar 2020 03:14:33 +0000 |
parents | 09d26f19a2c2 |
children | 1e6f05ede5ca |
line wrap: on
line diff
--- a/lunalcd/Makefile Thu Mar 19 01:38:57 2020 +0000 +++ b/lunalcd/Makefile Thu Mar 19 03:14:33 2020 +0000 @@ -1,12 +1,16 @@ CC= gcc CFLAGS= -O2 -PROGS= gen-st-init ppmtocmd +PROGS= gen-ht-init gen-st-init ppmtocmd +HTINIT_OBJS= common.o initmain.o haoran.o STINIT_OBJS= common.o initmain.o startek.o PPMCONV_OBJS= common.o ppmtocmd.o all: ${PROGS} +gen-ht-init: ${HTINIT_OBJS} + ${CC} -o $@ ${HTINIT_OBJS} + gen-st-init: ${STINIT_OBJS} ${CC} -o $@ ${STINIT_OBJS}