Annotation of loncom/build/Makefile, revision 1.9

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: LON-CAPA-base:
                     10: 
                     11: cd: 
                     12: 
                     13: cd_cover:
                     14: 
1.2       harris41   15: system:
                     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
        !            36: 	make -f Makefile.configinstall SOURCE="../.." TARGET=""
        !            37: 	perl loncaparestoreconfigurations lasttimestamp
        !            38: 
1.8       harris41   39: install: build
1.7       harris41   40: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html install > Makefile.install
1.9     ! harris41   41: 	make -f Makefile.install SOURCE="../.." TARGET="" directories
        !            42: 	make -f Makefile.install SOURCE="../.." TARGET="" files
        !            43: 	make -f Makefile.install SOURCE="../.." TARGET="" links
1.4       harris41   44: 
1.8       harris41   45: build:
                     46: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html build > Makefile.build
1.9     ! harris41   47: 	make -f Makefile.build all
1.8       harris41   48: 
1.6       harris41   49: RPM: BinaryRoot
                     50: 	cat base_file_list.txt | perl make_rpm.pl base 3.1 '' '' BinaryRoot
                     51: 
                     52: BinaryRoot:
1.5       harris41   53: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html BinaryRoot
                     54: 
1.1       harris41   55: clean:
1.3       harris41   56: 	rm -Rf HTML
1.4       harris41   57: 	rm -f *.spec
                     58: 	rm -f LCMakefile
1.5       harris41   59: 	rm -Rf BinaryRoot
                     60: 	rm -f Makefile.BinaryRoot
1.8       harris41   61: 	rm -f Makefile.build
                     62: 	rm -f Makefile.install

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