FreeCalypso > hg > freecalypso-reveng
view objgrep/Makefile @ 279:a7707c174510
pirelli/{rssi,txcal}: results of the Pirelli to CMU200 experiment
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 16 Feb 2019 18:30:11 +0000 |
parents | 10c0cdc18208 |
children |
line wrap: on
line source
CC= gcc CFLAGS= -O2 PROGS= objgrep objgrep-fe OBJS= dumpmatch.o globals.o grep.o lowlevel.o main.o mkpattern.o tables.o HDRS= coffconst.h filestruct.h globals.h intstruct.h all: ${PROGS} objgrep: ${OBJS} ${CC} -o $@ ${OBJS} ${OBJS}: ${HDRS} objgrep-fe: frontend.c ${CC} ${CFLAGS} -o $@ frontend.c install: install -c -o bin -g bin -m 755 ${PROGS} /usr/local/bin clean: rm -f *.o ${PROGS} *errs