summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 16de460..0000000
--- a/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-.PHONY: all clean
-
-ifeq ($(OS),Windows_NT)
- AGBCC := agbcc.exe
-else
- AGBCC := agbcc
-endif
-
-all: gcc/$(AGBCC) libgcc/libgcc.a
-
-gcc/$(AGBCC):
- make -C gcc
-
-libgcc/libgcc.a: | gcc/$(AGBCC)
- make -C libgcc
-
-clean:
- make -C gcc clean
- make -C libgcc clean