diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Fri May 24 07:17:23 2024 +0000
@@ -0,0 +1,11 @@
+CC=	gcc
+CFLAGS=	-O2
+PROGS=	trau-parse
+
+all:	${PROGS}
+
+trau-parse:	trau-parse.c
+	${CC} ${CFLAGS} -o $@ $@.c
+
+clean:
+	rm -f *.o ${PROGS}