aboutsummaryrefslogtreecommitdiff
path: root/Examples/GIFPlot/Java/Makefile
blob: 6017e1a77f9898d7c7d199b2e1bec83d0e564f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
TOP        = ../..
SWIG       = $(TOP)/../swig -shadow
SWIGOPT    = -I../Include
SRCS       =
TARGET     = libjgifplot
INTERFACE  = gifplot.i
LIBS       = -L.. -lgifplot -lm
INCLUDE    = -I../Include

all::
	$(MAKE) -f $(TOP)/Makefile SRCS='$(SRCS)' SWIG='$(SWIG)' \
	INCLUDE='$(INCLUDE)' LIBS='$(LIBS)' SWIGOPT='$(SWIGOPT)' \
	TARGET='$(TARGET)' INTERFACE='$(INTERFACE)' java

clean::
	rm -f *_wrap* *.o *~ *.so .~* core *.gif *.class ColorMap.java FrameBuffer.java Plot2D.java Plot3D.java gifplot.java

check: all