File: Makefile

package info (click to toggle)
libcgi 1.0-5
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 940 kB
  • ctags: 268
  • sloc: sh: 2,700; ansic: 2,134; makefile: 232
file content (16 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC = gcc
FLAGS = -Wall
CGIBIN = .

all:

	$(CC) $(FLAGS) -lcgi explode.c -o $(CGIBIN)/explode.cgi
	$(CC) $(FLAGS) -lcgi htmlentities.c -o $(CGIBIN)/htmlentities.cgi
	$(CC) $(FLAGS) -lcgi b64.c -o $(CGIBIN)/b64.cgi
	$(CC) $(FLAGS) -lcgi md5.c -o $(CGIBIN)/md5.cgi

	@echo 
	@echo Example compiled. Now copy *.cgi and *.htm files 
	@echo to your webserver cgi-bin directory.
	@echo