view 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 source

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}