Annotation of OpenXM/rc/Makefile, Revision 1.4
1.4 ! takayama 1: # $OpenXM: OpenXM/rc/Makefile,v 1.3 2000/01/26 23:14:40 takayama Exp $
1.2 takayama 2: CC=gcc
1.4 ! takayama 3: all : dot.bashrc dot.cshrc openxm .done_gen-shell-scripts
1.1 takayama 4:
1.4 ! takayama 5: dot.bashrc : bashrc repl
1.1 takayama 6: rm -f dot.bashrc
7: echo "# DO NOT EDIT THIS FILE" >dot.bashrc
8: ./repl <bashrc >>dot.bashrc
9:
10: dot.cshrc : cshrc repl
11: rm -f dot.cshrc
12: echo "# DO NOT EDIT THIS FILE" >dot.cshrc
13: ./repl <cshrc >>dot.cshrc
14:
15: repl : repl.c
1.3 takayama 16: ${CC} -static -o repl repl.c
1.1 takayama 17:
18: openxm : dot.cshrc
19: rm -f openxm
20: echo "#!/bin/csh" >openxm
21: cat dot.cshrc >>openxm
22: echo '$$*' >>openxm
23: chmod +x openxm
1.3 takayama 24: cp -f openxm ../bin
1.1 takayama 25:
1.4 ! takayama 26: .done_gen-shell-scripts : dot.cshrc Makefile gen-shell-scripts
! 27: ./gen-shell-scripts
! 28: touch .done_gen-shell-scripts
! 29:
1.1 takayama 30: clean :
1.4 ! takayama 31: rm -f dot.bashrc dot.cshrc repl openxm asir sm1 gp k0 .gen-shell-scripts
! 32:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>