diff options
Diffstat (limited to 'apps/Makefile')
-rw-r--r-- | apps/Makefile | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/apps/Makefile b/apps/Makefile index 1afa879..e4ea24e 100644 --- a/apps/Makefile +++ b/apps/Makefile @@ -1,23 +1,15 @@ # MIT License, Copyright (c) 2020 Marvin Borner -COBJS = init.o idle.o wm.o test.o chess.o #mandelbrot.o window.o exec.o files.o test.o cc.o browser.o server.o -CC = ccache ../cross/opt/bin/i686-elf-gcc -LD = ccache ../cross/opt/bin/i686-elf-ld -OC = ccache ../cross/opt/bin/i686-elf-objcopy -ST = ccache ../cross/opt/bin/i686-elf-strip +CFLAGS = $(CFLAGS_DEFAULT) -I$(LIBS)/ -I$(LIBS)/libc/inc/ -pie -fPIE -fPIC -DUSER +LDFLAGS = --section-start=.text=0x42000000 -L$(BUILD) +DIRS = $(wildcard */.) -CFLAGS = $(CFLAGS_DEFAULT) -I../libs/ -I../libs/libc/inc/ -pie -fPIE -fPIC -DUSER +export -all: $(COBJS) +all: $(DIRS) +$(DIRS): + @mkdir -p $(BUILD)/apps/ + @$(MAKE) --no-print-directory -C $@ + @$(MAKE) clean --no-print-directory -C $@ -%.o: %.c - @mkdir -p ../build/apps/ - @$(CC) -c $(CFLAGS) $< -o $@ - @$(LD) -o $(@:.o=.elf) --section-start=.text=0x42000000 -L../build/ -pie -no-dynamic-linker $@ -lgui -ltxt -lc - @cp $(@:.o=.elf) ../build/apps/$(@:.o=) -#@$(ST) --strip-all ../build/apps/$(@:.o=) - -# %.o: %.c -# @mkdir -p ../build/apps/ -# @$(CC) -c $(CFLAGS) $< -o $@ -# @$(CC) -r $(CFLAGS) -o ../build/apps/$(@:.o=) -L../build $< -lc +.PHONY: all $(DIRS) |