Annotation of loncom/build/Makefile, revision 1.12

1.1       harris41    1: # Makefile
                      2: # For LON-CAPA
                      3: # Scott Harrison
                      4: # November 2000
                      5: 
1.12    ! harris41    6: CDTARGET="."
        !             7: 
1.9       harris41    8: all: 
                      9: 	# nothing yet here
1.1       harris41   10: 
                     11: cd: 
1.12    ! harris41   12: 	# Build temporary script to get cd
1.11      harris41   13: 	# make sure there is enough disk space
1.12    ! harris41   14: 	@echo "# Automatically generated Makefile for LON-CAPA" > Makefile.cd.tmp
        !            15: 	@/bin/df $(CDTARGET) | perl -e '@l=<>;split(/\s+/,$$l[1]);$$s=@_[3]*1024;if ($$s>1000000000) {print "\S=1\n";} else {print "\S=0\n";}' >> Makefile.cd.tmp
        !            16: 	@echo "cd:" >> Makefile.cd.tmp
        !            17: 	@echo -e "ifeq (\$$(S),1)" >> Makefile.cd.tmp
        !            18: 	@echo -e "\t@echo \"There is enough disk space.  Good!\"" >> Makefile.cd.tmp
        !            19: 	# set up commands to copy cd image from install.lon-capa.org (wget -r)
        !            20: 	# set up cvs update commands
        !            21: 	# set up cd image compilation (mkisofs)
        !            22: 	@echo -e "else" >> Makefile.cd.tmp
        !            23: 	@echo -e "\t@echo \"ERROR ******* Not enough disk space. There must be at least one gigabyte free\"" >> Makefile.cd.tmp
        !            24: 	@echo -e "endif" >> Makefile.cd.tmp
        !            25: 	make -f Makefile.cd.tmp TARGET="$(CDTARGET)" cd
1.1       harris41   26: 
                     27: cd_cover:
1.2       harris41   28: 
1.3       harris41   29: HTML:
                     30: 	install -d HTML
                     31: 	cp ../../doc/loncapafiles/*.gif HTML
                     32: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html HTML > HTML/index.html
                     33: 
1.8       harris41   34: status:
1.7       harris41   35: 	install -d HTML
                     36: 	cp ../../doc/loncapafiles/*.gif HTML
                     37: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html status > HTML/filestatus.html
                     38: 
1.2       harris41   39: LCMakefile:
1.3       harris41   40: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html LCMakefile > LCMakefile
1.2       harris41   41: 
1.4       harris41   42: SPEC:
                     43: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html SPEC
1.7       harris41   44: 
1.9       harris41   45: configinstall: 
                     46: 	# there is a dependency on having directories in place, but oh well...
                     47: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html configinstall > Makefile.configinstall
1.10      harris41   48: 	make -f Makefile.configinstall SOURCE="../.." TARGET="" configfiles
1.9       harris41   49: 	perl loncaparestoreconfigurations lasttimestamp
1.10      harris41   50: 	make -f Makefile.configinstall TARGET="" configpermissions
1.9       harris41   51: 
1.8       harris41   52: install: build
1.7       harris41   53: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html install > Makefile.install
1.9       harris41   54: 	make -f Makefile.install SOURCE="../.." TARGET="" directories
                     55: 	make -f Makefile.install SOURCE="../.." TARGET="" files
                     56: 	make -f Makefile.install SOURCE="../.." TARGET="" links
1.4       harris41   57: 
1.8       harris41   58: build:
                     59: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html build > Makefile.build
1.9       harris41   60: 	make -f Makefile.build all
1.8       harris41   61: 
1.6       harris41   62: RPM: BinaryRoot
                     63: 	cat base_file_list.txt | perl make_rpm.pl base 3.1 '' '' BinaryRoot
                     64: 
                     65: BinaryRoot:
1.5       harris41   66: 	perl parse.pl ../../doc/loncapafiles/loncapafiles.html BinaryRoot
                     67: 
1.1       harris41   68: clean:
1.3       harris41   69: 	rm -Rf HTML
1.4       harris41   70: 	rm -f *.spec
                     71: 	rm -f LCMakefile
1.5       harris41   72: 	rm -Rf BinaryRoot
                     73: 	rm -f Makefile.BinaryRoot
1.8       harris41   74: 	rm -f Makefile.build
                     75: 	rm -f Makefile.install

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