File: Makefile

package info (click to toggle)
adacgi 1.6-9
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 280 kB
  • ctags: 21
  • sloc: ada: 1,068; makefile: 86
file content (26 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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