comparison d144/Makefile @ 52:4681ad8483d6

d144: edata-input-compile program written
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 25 Sep 2024 03:33:16 +0000
parents trau-ul-compile/Makefile@f80e64139670
children c93ecd225b7f
comparison
equal deleted inserted replaced
51:4189abdfeaa4 52:4681ad8483d6
1 CC= gcc
2 CFLAGS= -O2
3 PROGS= edata-input-compile
4
5 all: ${PROGS}
6
7 edata-input-compile: edata-input-compile.c
8 ${CC} ${CFLAGS} -o $@ $@.c
9
10 clean:
11 rm -f *.o ${PROGS}