#
# generate the hello executable from hello.c.ppp
#
PERLPP=perlpp

all : hello

hello : hello.c
	$(CC) -g -o hello hello.c

hello.c : hello.c.pl
	./hello.c.pl > hello.c

hello.c.pl : hello.c.ppp
	$(PERLPP) -pl hello.c.ppp

clean :
	/bin/rm -f hello hello.c hello.c.pl core
