File:  [LON-CAPA] / loncom / build / Makefile
Revision 1.7: download - view: text, annotated - select for diffs
Tue Dec 12 17:11:23 2000 UTC (23 years, 6 months ago) by harris41
Branches: MAIN
CVS tags: HEAD
added partial implementation of two system-based targets
filesystem status and install

    1: # Makefile
    2: # For LON-CAPA
    3: # Scott Harrison
    4: # November 2000
    5: 
    6: all: LON-CAPA-base cd cd_cover
    7: 
    8: LON-CAPA-base:
    9: 
   10: cd: 
   11: 
   12: cd_cover:
   13: 
   14: system:
   15: 
   16: HTML:
   17: 	install -d HTML
   18: 	cp ../../doc/loncapafiles/*.gif HTML
   19: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html HTML > HTML/index.html
   20: 
   21: HTML:
   22: 	install -d HTML
   23: 	cp ../../doc/loncapafiles/*.gif HTML
   24: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html status > HTML/filestatus.html
   25: 
   26: LCMakefile:
   27: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html LCMakefile > LCMakefile
   28: 
   29: SPEC:
   30: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html SPEC
   31: 
   32: install:
   33: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html install > Makefile.install
   34: 
   35: RPM: BinaryRoot
   36: 	cat base_file_list.txt | perl make_rpm.pl base 3.1 '' '' BinaryRoot
   37: 
   38: BinaryRoot:
   39: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html BinaryRoot
   40: 
   41: clean:
   42: 	rm -Rf HTML
   43: 	rm -f *.spec
   44: 	rm -f LCMakefile
   45: 	rm -Rf BinaryRoot
   46: 	rm -f Makefile.BinaryRoot

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>