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

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