aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2018-02-10 13:44:36 +0100
committerNao Pross <naopross@thearcway.org>2018-02-10 13:44:36 +0100
commit7eb82d91aa34aba1a20bc47e726dffc50cdee0c4 (patch)
treea5bfca8521fd1ce7ff49981f4dc6d17cefbe336d /Makefile
parentFirst commit (diff)
downloadSubconscious-old-master.tar.gz
Subconscious-old-master.zip
CleanupHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 0 insertions, 18 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 13da9d5..0000000
--- a/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-MAINCLASS := Subconscious
-
-run: build
- cd bin && java $(MAINCLASS)
-
-pack: build
- echo "Main-Class: $(MAINCLASS)" > jar/manifest.txt
- jar cvfm jar/$(MAINCLASS).jar jar/manifest.txt -C bin/ .
-
-build: dirs
- javac -d bin/ src/*.java
-
-dirs:
- mkdir -p src bin jar
-
-clean:
- rm jar/*
- rm bin/*