summaryrefslogtreecommitdiff
path: root/LibC/Makefile
diff options
context:
space:
mode:
authorRobin Burchell <robin+git@viroteck.net>2019-05-23 10:14:19 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-23 13:06:59 +0200
commita04a58b7ebbcb13d49639b2fd9e8ebed6da1f2f7 (patch)
treef9f95f6ae228e1388b3e79ebc8d874ef64f43f4e /LibC/Makefile
parent7afc0fb9c83fd13cf48c52e26ce6fc5741d42e2b (diff)
downloadserenity-a04a58b7ebbcb13d49639b2fd9e8ebed6da1f2f7.zip
LibC: Port setjmp syntax to avoid nasm dependency
Diffstat (limited to 'LibC/Makefile')
-rw-r--r--LibC/Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/LibC/Makefile b/LibC/Makefile
index ab307c5cbd..acdc8975d3 100644
--- a/LibC/Makefile
+++ b/LibC/Makefile
@@ -48,7 +48,7 @@ LIBC_OBJS = \
netdb.o \
sched.o
-ASM_OBJS = setjmp.no crti.ao crtn.ao
+ASM_OBJS = setjmp.ao crti.ao crtn.ao
CPP_OBJS = $(AK_OBJS) $(WIDGETS_OBJS) $(LIBC_OBJS)
@@ -68,9 +68,6 @@ $(LIBRARY): $(CPP_OBJS) $(ASM_OBJS)
.cpp.o:
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
-%.no: %.asm
- @echo "NASM $@"; nasm -f elf -o $@ $<
-
%.ao: %.S
@echo "AS $@"; $(AS) -o $@ $<