diff options
author | Alexis211 <alexis211@gmail.com> | 2010-08-10 17:14:38 +0200 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-08-10 17:14:38 +0200 |
commit | 0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03 (patch) | |
tree | b9033e69392dd1a7ffe0173ef8db561ecce9b21b /src/library/Makefile | |
parent | ad27a90fa788a81253b5f2ad621d82ae574ae65d (diff) | |
download | TCE-0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03.tar.gz TCE-0ec0ca40a4fedfe97c49903a329b2a9ad2e22d03.zip |
Using a cross-compiler. Better makefile system.
Diffstat (limited to 'src/library/Makefile')
-rw-r--r-- | src/library/Makefile | 42 |
1 files changed, 9 insertions, 33 deletions
diff --git a/src/library/Makefile b/src/library/Makefile index 3d55354..ac585f5 100644 --- a/src/library/Makefile +++ b/src/library/Makefile @@ -1,37 +1,13 @@ -.PHONY: clean, mrproper +Out = grapes.o +Obj = gc/syscall.o gc/server.o \ + gm/call.o gm/call/manager.o \ + gc/mem.o gc/shm.o \ + std/mutex.o std/string.o std/stdio.o \ + start.o -CC = gcc -CFLAGS = -nostdlib -nostartfiles -nodefaultlibs -fno-builtin -fno-stack-protector -Wall -Wextra -I../include +include ../common.make -LD = ld -LDFLAGS = -r +CFLAGS = -I../include -Library = grapes.o -Objects = gc/syscall.o gc/server.o \ - gm/call.o gm/call/manager.o \ - gc/mem.o gc/shm.o \ - std/mutex.o std/string.o std/stdio.o \ - start.o +LDFLAGS += -r -all: $(Library) - echo "* Done with library $(Library)" - -rebuild: mrproper all - -$(Library): $(Objects) - echo "* Linking library $(Library)..." - $(LD) $(LDFLAGS) $^ -o $@ - -%.uo: %.c - echo "* Compiling $<..." - $(CC) $(CFLAGS) -c $< -o $@ - -clean: - echo "* Removing object files..." - rm *.o || exit 0 - rm -rf $(Objects) || exit 0 - -mrproper: clean - echo "* Removing library..." - rm *.o || exit 0 - rm -rf $(Library) || exit 0 |