view Makefile @ 0:131e0f1972bb

beginning of trau-parse program
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 24 May 2024 07:17:23 +0000
parents
children
line wrap: on
line source

CC=	gcc
CFLAGS=	-O2
PROGS=	trau-parse

all:	${PROGS}

trau-parse:	trau-parse.c
	${CC} ${CFLAGS} -o $@ $@.c

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