Deleted Redundent Files
[iotcloud.git] / src2 / server / Makefile
1 CPPFLAGS=-O0 -g -Wall
2
3 all: iotcloud.fcgi
4
5 iotcloud.fcgi: iotcloud.o iotquery.o
6         g++ $(CPPFLAGS) -o iotcloud.fcgi iotcloud.o iotquery.o -lfcgi -lfcgi++
7
8 iotcloud.o: iotcloud.cpp iotquery.h
9         g++ $(CPPFLAGS) -c -o iotcloud.o iotcloud.cpp
10
11 iotquery.o: iotquery.cpp iotquery.h
12         g++ $(CPPFLAGS) -c -o iotquery.o iotquery.cpp
13
14 clean:
15         rm *.o iotcloud.fcgi