FreeCalypso > hg > gsm-net-reveng
diff trau-ul-compile/Makefile @ 24:8e9bbb83bd16
trau-ul-compile program written
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 24 Jun 2024 01:01:17 +0000 |
parents | |
children | f80e64139670 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/trau-ul-compile/Makefile Mon Jun 24 01:01:17 2024 +0000 @@ -0,0 +1,11 @@ +CC= gcc +CFLAGS= -O2 +PROGS= trau-ul-compile + +all: ${PROGS} + +trau-ul-compile: trau-ul-compile.c + ${CC} ${CFLAGS} -o $@ $@.c -lgsmfr2 -lgsmefr + +clean: + rm -f *.o ${PROGS}