12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- JAVAC = javac
- JAVADOC = javadoc
- DOCDIR = doc
- CC = gcc
- #TARGET = unix
- TARGET= cygwin
- #TARGET = win
-
- # Java files to be compiled
- # Needs to be a complete list so they work as target
- JAVAFILES = HelperUtility.java AnimationUtility.java Animation.java AFrame.java cubeWorker.java layerEditFrame.java Led3D.java frame.java
-
- ifeq ($(TARGET),win)
- INJAR = *.class *.png serialHelper.exe
- RM = del
- else
- INJAR = *.class *.png serialHelper
- RM = rm
- endif
-
- # Spit out jar file, documentation, delete intermediate files
- all: build doc/index.html clean
-
- # Generate Documentation
- doc: doc/index.html
-
- # Compile java files
- java: frame.class
-
- # Spit out jar file, dont remove anything after that
- build: frame.class serialHelper
- jar -cmf manifest.txt "Cube Control.jar" $(INJAR)
-
- # Compile java files
- frame.class: $(JAVAFILES)
- $(JAVAC) $(JAVAFILES)
-
- doc/index.html: $(JAVAFILES)
- $(JAVADOC) -d $(DOCDIR) $(JAVAFILES)
-
- # Compile serial Helper
- ifeq ($(TARGET),win)
- serialHelper: serialHelper.c helper/winSerial.c
- $(CC) -o serialHelper.exe -D winHelper serialHelper.c
- else
- serialHelper: serialHelper.c helper/unixSerial.c
- $(CC) -o serialHelper serialHelper.c
- endif
-
- # Delete intermediate files
- clean:
- ifeq ($(TARGET),win)
- $(RM) *.class
- $(RM) serialHelper.exe
- else
- $(RM) -f *.class
- $(RM) -f serialHelper
- endif
|