summaryrefslogtreecommitdiff
path: root/applications/init/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'applications/init/makefile')
-rw-r--r--applications/init/makefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/applications/init/makefile b/applications/init/makefile
deleted file mode 100644
index 91328e7..0000000
--- a/applications/init/makefile
+++ /dev/null
@@ -1,12 +0,0 @@
-SOURCES = \
- main.cpp
-
-build/%.cpp.o: source/%.cpp
- @mkdir -p $(@D)
- $(HILBERT_CC) -c $^ -o $@
-
-build/init.elf: $(SOURCES:%=build/%.o)
- $(HILBERT_CC) $^ -o $@
-
-clean:
- rm -rf build