view lunalcd/Makefile @ 65:cdf2c99e5025

lunalcd project started
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 19 Mar 2020 01:31:05 +0000
parents
children 09d26f19a2c2
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	gen-st-init

STINIT_OBJS=	common.o initmain.o startek.o

all:	${PROGS}

gen-st-init:	${STINIT_OBJS}
	${CC} -o $@ ${STINIT_OBJS}

clean:
	rm -f ${PROGS} *.o