Annotation of OpenXM/rc/Makefile, Revision 1.3
1.3 ! takayama 1: # $OpenXM: OpenXM/rc/Makefile,v 1.2 2000/01/18 09:42:17 takayama Exp $
1.2 takayama 2: CC=gcc
1.1 takayama 3: all : dot.bashrc dot.cshrc openxm
4:
5: dot.bashrc : bashrc repl
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:
26: clean :
27: rm -f dot.bashrc dot.cshrc repl openxm
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>