# cvsid: $Id: Makefile.sample,v 1.3 2006/05/02 12:48:27 rjs Exp $
#
# sample Makefile for PDFlib applications
# This may have to be changed for your build environment


CFLAGS	= -I./include
LDFLAGS	= -L./lib
# use the following for AIX
#LDFLAGS	= -L./lib -ltet -lm

LDLIBS	= -ltet -lm
# use the following for Mac OS X:
#LDLIBS	= -ltet -lm -framework ApplicationServices

PROGS	= \
	extractor

all: $(PROGS)

test: $(PROGS)
	-./extractor ../../doc/TET-license.pdf TET-license.txt


clean:
	$(RM) $(PROGS) *.pdf *.o
