comparison d144/Makefile @ 53:c93ecd225b7f

d144: generate d144-ul-input.bin
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 25 Sep 2024 03:50:11 +0000
parents 4681ad8483d6
children 8deebf9c410a
comparison
equal deleted inserted replaced
52:4681ad8483d6 53:c93ecd225b7f
1 CC= gcc 1 CC= gcc
2 CFLAGS= -O2 2 CFLAGS= -O2
3 PROGS= edata-input-compile 3 PROGS= edata-input-compile
4 DATA= d144-ul-input.bin
4 5
5 all: ${PROGS} 6 all: ${PROGS} ${DATA}
6 7
7 edata-input-compile: edata-input-compile.c 8 edata-input-compile: edata-input-compile.c
8 ${CC} ${CFLAGS} -o $@ $@.c 9 ${CC} ${CFLAGS} -o $@ $@.c
9 10
11 d144-ul-input.bin: edata-input-compile ul-input
12 ./edata-input-compile ul-input $@
13
10 clean: 14 clean:
11 rm -f *.o ${PROGS} 15 rm -f *.o ${PROGS} ${DATA}