
# Copyright (c) 2003 KONICA MINOLTA BUSINESS TECHNOLOGIES, INC. All rights reserved.


CC = cc
CFLAGS = -D_BSD  #Compatibility flag for AIX

#uncomment the following line to turn on debugging.
#DFLAGS  = -DDEBUG -g

qef: qef.o qefutil.o 
	${CC} ${CFLAGS} -o qef qef.o qefutil.o

qef.o: qef.h
	${CC} ${CFLAGS} ${DFLAGS} -c $*.c

qefutil.o: qef.h
	${CC} ${CFLAGS} ${DFLAGS} -c $*.c

getargs.o: externs.h
	${CC} ${CFLAGS} ${DFLAGS} -c prtpost.c getargs.c

prtpost: prtpost.o getargs.o
	${CC} ${CFLAGS} -o prtpost prtpost.o getargs.o
