# This makefile automates generates the CGI demo programs and
# compressed files.

VERSION=1.6

# By default, compile all of the demo programs:

EXAMPLES=demo minimal search test_cookie test_send test_encode

all:	$(EXAMPLES)

$(EXAMPLES):	FORCE
	gnatmake -Pexamples 


# "FORCE" just forces the depending rule to always be run.
# In particular, we always want to invoke gnatmake, which then checks to see if
# anything needs recompiling.

FORCE:


clean:
	rm -f $(EXAMPLES) *.o *.ali


