comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:131e0f1972bb
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= trau-parse
4
5 all: ${PROGS}
6
7 trau-parse: trau-parse.c
8 ${CC} ${CFLAGS} -o $@ $@.c
9
10 clean:
11 rm -f *.o ${PROGS}