Subversion Repositories wimsdev

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 reyssat 1
# @configure_input@
2
 
3
wims_home=../..
4
STRIP=@STRIP@
5
 
6
all: draw-ode
7
 
8
draw-ode::
9
	cd drawode; make all
10
	$(STRIP) drawode/drawode
11
	cp drawode/drawode $(wims_home)/public_html/bin/draw..ode
12
 
13
clean:
14
	cd drawode; make clean
15
 
16
distclean:
17
	cd drawode; make clean
18
	rm -f $(wims_home)/public_html/bin/draw..ode 2>/dev/null
19
	rm -f Makefile
20