# cvsid: $Id: Makefile.sample,v 1.3.10.1 2007/10/23 13:56:47 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 -lpcos -lm

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

PROGS	= \
	dumper

all: $(PROGS)

test: $(PROGS)
	-./dumper ../../doc/pCOS-license.pdf


clean:
	rm -f $(PROGS) *.pdf *.o
