File:  [LON-CAPA] / loncom / build / Makefile
Revision 1.8: download - view: text, annotated - select for diffs
Wed Dec 13 21:43:18 2000 UTC (23 years, 6 months ago) by harris41
Branches: MAIN
CVS tags: HEAD
continuing to implement targets.  build/dependency information
is now processed. -Scott

    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: status:
   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: build
   33: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html install > Makefile.install
   34: 
   35: build:
   36: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html build > Makefile.build
   37: #	make -f Makefile.
   38: 
   39: RPM: BinaryRoot
   40: 	cat base_file_list.txt | perl make_rpm.pl base 3.1 '' '' BinaryRoot
   41: 
   42: BinaryRoot:
   43: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html BinaryRoot
   44: 
   45: clean:
   46: 	rm -Rf HTML
   47: 	rm -f *.spec
   48: 	rm -f LCMakefile
   49: 	rm -Rf BinaryRoot
   50: 	rm -f Makefile.BinaryRoot
   51: 	rm -f Makefile.build
   52: 	rm -f Makefile.install

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