aboutsummaryrefslogtreecommitdiff
path: root/apps/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2021-03-17 22:33:31 +0100
committerMarvin Borner2021-03-17 22:33:31 +0100
commit63ed037fdbb04a4855531f5ce980d8517752f640 (patch)
tree512965efa1ace0248932b133dab260d7b52231bb /apps/Makefile
parent50856df5b7272a6fdcd6a049351b7f1320c6cdaa (diff)
Awesome!
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 1a7aff3..9ad268e 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -5,16 +5,15 @@ CC = ccache ../cross/opt/bin/i686-elf-gcc
LD = ccache ../cross/opt/bin/i686-elf-ld
OC = ccache ../cross/opt/bin/i686-elf-objcopy
-CFLAGS = $(CFLAGS_DEFAULT) -I../libc/inc/ -I../libgui/inc/ -I../libtxt/inc/ -fPIE -Duserspace
+CFLAGS = $(CFLAGS_DEFAULT) -I../libc/inc/ -I../libgui/inc/ -I../libtxt/inc/ -Duserspace
all: $(COBJS)
%.o: %.c
@mkdir -p ../build/apps/
@$(CC) -c $(CFLAGS) $< -o $@
- @$(LD) -o $(@:.o=.elf) -Tlink.ld -L../build/ $@ -lgui -ltxt -lc
- @$(OC) -O binary $(@:.o=.elf) ../build/apps/$(@:.o=)
- @cp $(@:.o=.elf) ../build/apps/$(@:.o=.elf)
+ @$(LD) -o $(@:.o=.elf) -L../build/ $@ -lgui -ltxt -lc
+ @cp $(@:.o=.elf) ../build/apps/$(@:.o=)
# %.o: %.c
# @mkdir -p ../build/apps/