summaryrefslogtreecommitdiff
path: root/src/webserver/Makefile
blob: 417fa7c5b42d1c7591fea052402f83fd215a7e30 (plain) (blame)
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
include ../../make.defs

all:
	#Generate framework...
	$(CC) $(CFLAGS) -c parse.c
	$(CC) $(CFLAGS) -c generate.c
	$(CC) $(CFLAGS) -c htmlstyle.c
	$(CC) $(CFLAGS) -c logs.c
	
	#Generate "pages"...
	cd pages && $(CC) $(CFLAGS) -c about.c && cd ..
	cd pages && $(CC) $(CFLAGS) -c sample.c && cd ..
	cd pages && $(CC) $(CFLAGS) -c notdone.c && cd ..

	#Building the server...
	$(CC) $(CFLAGS) -o webserver main.c parse.o generate.o htmlstyle.o \
	logs.o pages/about.o pages/sample.o pages/notdone.o
	



clean:
	rm -f *.o
	rm -f pages/*.o
	rm -f webserver