diff options
author | Benji Dial <benji@benjidial.net> | 2024-07-31 19:53:02 -0400 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2024-07-31 19:53:02 -0400 |
commit | cc9a1811fd93971ae8c0d3bdc8d60102ce58556e (patch) | |
tree | 9430cab5514959dc6c5b2122040aab1453debf51 /applications/hello/makefile | |
parent | e6915fb6dd715e39e37702a6d69c220c0f1798bf (diff) | |
download | hilbert-os-cc9a1811fd93971ae8c0d3bdc8d60102ce58556e.tar.gz |
redo build system
Diffstat (limited to 'applications/hello/makefile')
-rw-r--r-- | applications/hello/makefile | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/applications/hello/makefile b/applications/hello/makefile deleted file mode 100644 index ea0b09a..0000000 --- a/applications/hello/makefile +++ /dev/null @@ -1,12 +0,0 @@ -SOURCES = \ - main.cpp - -build/%.cpp.o: source/%.cpp - @mkdir -p $(@D) - $(HILBERT_CC) -c $^ -o $@ - -build/hello.elf: $(SOURCES:%=build/%.o) - $(HILBERT_CC) $^ -ldaguerre -lpake -o $@ - -clean: - rm -rf build |