Annotation of loncom/build/Makefile, revision 1.11
1.1 harris41 1: # Makefile
2: # For LON-CAPA
3: # Scott Harrison
4: # November 2000
5:
1.9 harris41 6: all:
7: # nothing yet here
1.1 harris41 8:
9: cd:
1.11 ! harris41 10: # make sure there is enough disk space
! 11: # copy cd image from install.lon-capa.org (wget -r)
! 12: # add in appropriate files from CVS
! 13: # compile cd image (mkisofs)
1.1 harris41 14:
15: cd_cover:
1.2 harris41 16:
1.3 harris41 17: HTML:
18: install -d HTML
19: cp ../../doc/loncapafiles/*.gif HTML
20: perl parse.pl ../../doc/loncapafiles/loncapafiles.html HTML > HTML/index.html
21:
1.8 harris41 22: status:
1.7 harris41 23: install -d HTML
24: cp ../../doc/loncapafiles/*.gif HTML
25: perl parse.pl ../../doc/loncapafiles/loncapafiles.html status > HTML/filestatus.html
26:
1.2 harris41 27: LCMakefile:
1.3 harris41 28: perl parse.pl ../../doc/loncapafiles/loncapafiles.html LCMakefile > LCMakefile
1.2 harris41 29:
1.4 harris41 30: SPEC:
31: perl parse.pl ../../doc/loncapafiles/loncapafiles.html SPEC
1.7 harris41 32:
1.9 harris41 33: configinstall:
34: # there is a dependency on having directories in place, but oh well...
35: perl parse.pl ../../doc/loncapafiles/loncapafiles.html configinstall > Makefile.configinstall
1.10 harris41 36: make -f Makefile.configinstall SOURCE="../.." TARGET="" configfiles
1.9 harris41 37: perl loncaparestoreconfigurations lasttimestamp
1.10 harris41 38: make -f Makefile.configinstall TARGET="" configpermissions
1.9 harris41 39:
1.8 harris41 40: install: build
1.7 harris41 41: perl parse.pl ../../doc/loncapafiles/loncapafiles.html install > Makefile.install
1.9 harris41 42: make -f Makefile.install SOURCE="../.." TARGET="" directories
43: make -f Makefile.install SOURCE="../.." TARGET="" files
44: make -f Makefile.install SOURCE="../.." TARGET="" links
1.4 harris41 45:
1.8 harris41 46: build:
47: perl parse.pl ../../doc/loncapafiles/loncapafiles.html build > Makefile.build
1.9 harris41 48: make -f Makefile.build all
1.8 harris41 49:
1.6 harris41 50: RPM: BinaryRoot
51: cat base_file_list.txt | perl make_rpm.pl base 3.1 '' '' BinaryRoot
52:
53: BinaryRoot:
1.5 harris41 54: perl parse.pl ../../doc/loncapafiles/loncapafiles.html BinaryRoot
55:
1.1 harris41 56: clean:
1.3 harris41 57: rm -Rf HTML
1.4 harris41 58: rm -f *.spec
59: rm -f LCMakefile
1.5 harris41 60: rm -Rf BinaryRoot
61: rm -f Makefile.BinaryRoot
1.8 harris41 62: rm -f Makefile.build
63: rm -f Makefile.install
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>