Bugfixes to usermode 64-bit division, more work on GUI (now sizes almost correctly)
[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) $(BIN).dsm
10
11 install: $(BIN)
12         $(xCP) $(BIN) $(DISTROOT)/Libs/
13
14 $(BIN): $(OBJ)
15         $(LD) $(LDFLAGS) -o $(BIN) $(OBJ)
16         @$(OBJDUMP) -d -S $(BIN) > $(BIN).dsm
17
18 %.o: %.c
19         $(CC) $(CFLAGS) -o $@ -c $<

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