FreeCalypso > hg > freecalypso-hwlab
comparison 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 |
comparison
equal
deleted
inserted
replaced
66:09d26f19a2c2 | 67:286289d551ee |
---|---|
1 CC= gcc | 1 CC= gcc |
2 CFLAGS= -O2 | 2 CFLAGS= -O2 |
3 PROGS= gen-st-init ppmtocmd | 3 PROGS= gen-ht-init gen-st-init ppmtocmd |
4 | 4 |
5 HTINIT_OBJS= common.o initmain.o haoran.o | |
5 STINIT_OBJS= common.o initmain.o startek.o | 6 STINIT_OBJS= common.o initmain.o startek.o |
6 PPMCONV_OBJS= common.o ppmtocmd.o | 7 PPMCONV_OBJS= common.o ppmtocmd.o |
7 | 8 |
8 all: ${PROGS} | 9 all: ${PROGS} |
10 | |
11 gen-ht-init: ${HTINIT_OBJS} | |
12 ${CC} -o $@ ${HTINIT_OBJS} | |
9 | 13 |
10 gen-st-init: ${STINIT_OBJS} | 14 gen-st-init: ${STINIT_OBJS} |
11 ${CC} -o $@ ${STINIT_OBJS} | 15 ${CC} -o $@ ${STINIT_OBJS} |
12 | 16 |
13 ppmtocmd: ${PPMCONV_OBJS} | 17 ppmtocmd: ${PPMCONV_OBJS} |