Restructured code into src/<module>
[tpg/opendispense2.git] / src / server / Makefile
1 # OpenDispense 2
2 #
3
4 OBJ := main.o server.o logging.o
5 OBJ += dispense.o itemdb.o
6 OBJ += handler_coke.o
7 BIN := ../../dispsrv
8
9 LINKFLAGS := -g ../../cokebank.so
10 CPPFLAGS := 
11 CFLAGS := -Wall -g
12
13 .PHONY: all clean
14
15 all: $(BIN)
16
17 clean:
18         $(RM) $(BIN) $(OBJ)
19
20 $(BIN): $(OBJ)
21         $(CC) -o $(BIN) $(LINKFLAGS) $(OBJ)
22

UCC git Repository :: git.ucc.asn.au