comparison helpers/Makefile @ 3:8123259c7f14

helpers/makeline imported from Selenite
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 15 May 2020 02:02:09 +0000
parents
children
comparison
equal deleted inserted replaced
2:14f8a71286c5 3:8123259c7f14
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= makeline
4
5 all: ${PROGS}
6
7 makeline: makeline.c
8 ${CC} ${CFLAGS} -o $@ $@.c
9
10 clean:
11 rm -f ${PROGS}