view objgrep/Makefile @ 208:f7943bdbb3ea

tiobjd disasm -g: grok struct/union/enum definitions and statics in functions
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Fri, 04 Mar 2016 23:36:16 +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