view objgrep/Makefile @ 186:e03aba49d5b4

leo-obj/tpudrv/tpudrv12.hints: literal pools and branches around them
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 15 Aug 2014 00:59:45 +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