FreeCalypso > hg > vband-misc
comparison utils/Makefile @ 51:914eeb3ab866
efr-sid OS#6538: generate test frames in hex form
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Mon, 12 Aug 2024 03:06:17 +0000 | 
| parents | 871e83f0cb76 | 
| children | 
   comparison
  equal
  deleted
  inserted
  replaced
| 50:0db059f4632d | 51:914eeb3ab866 | 
|---|---|
| 1 CC= gcc | 1 CC= gcc | 
| 2 CFLAGS= -O2 | 2 CFLAGS= -O2 | 
| 3 PROG= gen-hex-c | 3 PROGS= gen-hex-c gen-hex-lines | 
| 4 | 4 | 
| 5 all: ${PROG} | 5 all: ${PROGS} | 
| 6 | 6 | 
| 7 ${PROG}: ${PROG}.c | 7 gen-hex-c: gen-hex-c.c | 
| 8 ${CC} ${CFLAGS} -o $@ $@.c | |
| 9 | |
| 10 gen-hex-lines: gen-hex-lines.c | |
| 8 ${CC} ${CFLAGS} -o $@ $@.c | 11 ${CC} ${CFLAGS} -o $@ $@.c | 
| 9 | 12 | 
| 10 clean: | 13 clean: | 
| 11 rm -f *.o ${PROG} | 14 rm -f *.o ${PROGS} | 
