diff options
Diffstat (limited to 'euler')
-rw-r--r-- | euler/makefile | 26 | ||||
-rw-r--r-- | euler/source/empty.asm | 0 |
2 files changed, 0 insertions, 26 deletions
diff --git a/euler/makefile b/euler/makefile deleted file mode 100644 index 7574dea..0000000 --- a/euler/makefile +++ /dev/null @@ -1,26 +0,0 @@ -LIBC_SOURCES = \ - entry.cpp std/string.cpp std/cstring.cpp syscall.cpp std/cstdlib.cpp \ - heap.cpp syscall.asm std/cctype.cpp std/cstdio.cpp stream.cpp std/ctime.cpp - -clean: - rm -rf build - -build/%.asm.o: source/%.asm - @mkdir -p $(@D) - $(HILBERT_NASM) $^ -o $@ - -build/%.cpp.o: source/%.cpp - @mkdir -p $(@D) - $(HILBERT_CC) -ffreestanding -c $^ -o $@ - -build/crt0.o: build/empty.asm.o - cp $^ $@ - -build/libc.a: ${LIBC_SOURCES:%=build/%.o} - $(HILBERT_AR) rcs $@ $^ - -build/libg.a: build/empty.asm.o - $(HILBERT_AR) rcs $@ $^ - -build/libm.a: build/empty.asm.o - $(HILBERT_AR) rcs $@ $^ diff --git a/euler/source/empty.asm b/euler/source/empty.asm deleted file mode 100644 index e69de29..0000000 --- a/euler/source/empty.asm +++ /dev/null |