switch Cyclone to submodule on it's own git repo
[picodrive.git] / cpu / Cyclone / proj / Makefile
diff --git a/cpu/Cyclone/proj/Makefile b/cpu/Cyclone/proj/Makefile
deleted file mode 100644 (file)
index 55e4486..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-CFLAGS = -Wall
-ifdef CONFIG_FILE
-CFLAGS += -DCONFIG_FILE=\"$(CONFIG_FILE)\"
-endif
-
-all : cyclone.s
-
-cyclone.s : Cyclone.exe
-       ./Cyclone.exe
-
-Cyclone.exe : Main.o Ea.o OpAny.o OpArith.o OpBranch.o OpLogic.o Disa.o OpMove.o
-       $(CC) $^ -o $@ -lstdc++
-
-Main.o : ../Main.cpp ../app.h
-       $(CC) $(CFLAGS) ../Main.cpp -c -o $@
-
-Ea.o : ../Ea.cpp ../app.h
-       $(CC) $(CFLAGS) ../Ea.cpp -c -o $@
-
-OpAny.o : ../OpAny.cpp ../app.h
-       $(CC) $(CFLAGS) ../OpAny.cpp -c -o $@
-
-OpArith.o : ../OpArith.cpp ../app.h
-       $(CC) $(CFLAGS) ../OpArith.cpp -c -o $@
-
-OpBranch.o : ../OpBranch.cpp ../app.h
-       $(CC) $(CFLAGS) ../OpBranch.cpp -c -o $@
-
-OpLogic.o : ../OpLogic.cpp ../app.h
-       $(CC) $(CFLAGS) ../OpLogic.cpp -c -o $@
-
-OpMove.o : ../OpMove.cpp ../app.h
-       $(CC) $(CFLAGS) ../OpMove.cpp -c -o $@
-
-Disa.o : ../Disa/Disa.c ../Disa/Disa.h
-       $(CC) $(CFLAGS) ../Disa/Disa.c -c -o $@
-
-../app.h : ../config.h
-
-clean :
-       $(RM) *.o Cyclone.exe Cyclone.s
-