summaryrefslogtreecommitdiff
path: root/src/Makefile
blob: 94e823db7ed4991f3be30fe409afcf8086e2870f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ARCH=$(shell uname -m)

CC := g++
SRCDIR := .
BUILDDIR := $(ARCH)
DEPLOYDIR := .
# DEPLOYDIR := deploy
# TARGET := $(DEPLOYDIR)/commissioning_$(ARCH).fcgi

CCFLAGS := -std=c++11 -g -Wall -Werror -pedantic -pedantic-errors 
LIB := -ljsoncpp -lfcgi++ -lfcgi 
INC := -I ../include

fcgi_commission.fcgi: fcgi_commission.o
	$(CC) -o fcgi_commission.fcgi fcgi_commission.o

clean:
	@echo " $(RM) fcgi_commission.fcgi