Cleanup Commit
[tpg/acess2.git] / Usermode / Libraries / Makefile.tpl
1 # Acess 2 SQLite 3 Library
2 #
3
4 .PHONY: all clean install
5
6 all: $(BIN)
7
8 clean:
9         $(RM) $(BIN) $(OBJ)
10
11 install: $(BIN)
12         $(xCP) $(BIN) $(DISTROOT)/Libs/
13
14 $(BIN): $(OBJ)
15         $(LD) $(LDFLAGS) -o $(BIN) $(OBJ)
16
17 %.o: %.c
18         $(CC) $(CFLAGS) -o $@ -c $<

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