view 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 source

CC=	gcc
CFLAGS=	-O2
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