File:  [LON-CAPA] / loncom / Attic / Makefile
Revision 1.44: download - view: text, annotated - select for diffs
Tue Oct 9 20:40:47 2001 UTC (22 years, 7 months ago) by albertel
Branches: MAIN
CVS tags: HEAD
- added new file

    1: #Installation Makefile for entire com target
    2: # Right now everything is done here, maybe a recursive make is a better idea?
    3: #2/13 3/13 Guy Albertelli
    4: #need to handle interface/default.*
    5: 
    6: PERLDIR=/home/httpd/perl
    7: APACHEMODULES=/home/httpd/lib/perl/Apache
    8: OTHERMODULES=/home/httpd/lib/perl
    9: PERLSODIR=/usr/local/lib/perl/5.6.0/
   10: JSMODULES=/home/httpd/html/res/adm/includes/
   11: TABDIR=/home/httpd/lonTabs
   12: RATDIR=/home/httpd/html/adm/rat
   13: 
   14: PERLTARGETS=lonc lond loncron lonsql
   15: AMTARGETS=lonnet/perl/lonrep.pm lonnet/perl/lonnet.pm \
   16: 	auth/lonlogin.pm auth/lonauth.pm auth/lonracc.pm \
   17: 	auth/loncacc.pm auth/lonacc.pm \
   18:         auth/lonroles.pm auth/lonlogout.pm  \
   19: 	../modules/TexConvert/tthperl/tth.pm \
   20:         xml/lontex.pm xml/lontexconvert.pm \
   21:         xml/lonxml.pm xml/style.pm xml/londefdef.pm xml/run.pm \
   22: 	xml/scripttag.pm homework/lonhomework.pm homework/hint.pm \
   23: 	homework/test.pm homework/inputtags.pm homework/structuretags.pm \
   24: 	homework/response.pm homework/caparesponse/caparesponse.pm \
   25: 	homework/radiobuttonresponse.pm homework/optionresponse.pm \
   26: 	homework/outputtags.pm homework/grades.pm homework/imageresponse.pm \
   27: 	homework/edit.pm homework/essayresponse.pm homework/randomlabel.pm \
   28: 	interface/lonmenu.pm ../rat/lonpageflip.pm ../rat/lonratedt.pm \
   29: 	../rat/lonratsrv.pm ../rat/lonuserstate.pm ../rat/lonpage.pm \
   30: 	../rat/lonsequence.pm ../rat/lonambiguous.pm ../rat/lonratparms.pm \
   31:         ../rat/lonwrapper.pm \
   32: 	html/res/adm/pages/annotator/admannotations.pm \
   33: 	html/res/adm/pages/bookmarkmenu/admbookmarks.pm \
   34: 	publisher/lonconstruct.pm \
   35: 	publisher/lonpubdir.pm publisher/lonretrieve.pm publisher/londiff.pm \
   36: 	publisher/lonpublisher.pm publisher/lonupload.pm \
   37: 	interface/lonindexer.pm interface/lonmeta.pm interface/lonmsg.pm \
   38: 	interface/lonspreadsheet.pm \
   39: 	interface/lonparmset.pm interface/londropadd.pm \
   40: 	interface/lonassignments.pm interface/loncommunicate.pm interface/lonerrorhandler.pm \
   41: 	interface/lonevaluate.pm interface/lonfeedback.pm \
   42: 	interface/lonnavmaps.pm interface/lonpreferences.pm interface/lonprintout.pm \
   43: 	interface/lonsearchcat.pm interface/lontest.pm interface/lonchart.pm \
   44: 	interface/loncommon.pm interface/loncreatecourse.pm interface/loncreateuser.pm \
   45: 	interface/lonstatistics.pm metadata_database/searchcat.pl
   46: 
   47: OMTARGETS=auth/localauth.pm
   48: 
   49: PERLSOTARGETS=../modules/TexConvert/tthperl/tth.so \
   50: 	../modules/TexConvert/tthperl/tth.bs ../modules/TexConvert/tthperl/tth.pm \
   51: 	homework/caparesponse/capa.so homework/caparesponse/capa.pm \
   52: 	homework/caparesponse/capa.bs
   53: 
   54: JSTARGETS=auth/londes.js homework/default_homework.lcpm \
   55:         homework/lectureonline.sty homework/lectureonline.lcpm \
   56: 	publisher/copyright.tab misc/un_keyword.tab
   57: 
   58: TABTARGETS=interface/filetypes.tab auth/roles.tab auth/rolesplain.tab \
   59: 	spare.tab htpasswd publisher/addid.tab publisher/language.tab \
   60: 	publisher/packages.tab \
   61: 	homework/insertlist.tab interface/mydesk.tab
   62: 
   63: RATTARGETS=../rat/images/*.gif ../rat/client/*.html
   64: 
   65: install: $(PERLTARGETS) $(AMTARGETS)
   66: 	cp $(PERLTARGETS) $(PERLDIR)
   67: 	cp $(AMTARGETS) $(APACHEMODULES)
   68: 	cp $(OMTARGETS) $(OTHERMODULES)
   69: 	#cd modules/TexConvert/tthperl; tcsh commands
   70: 	#cd ../../..
   71: 	cp $(PERLSOTARGETS) $(PERLSODIR)
   72: 	cp $(JSTARGETS) $(JSMODULES)
   73: 	cp $(TABTARGETS) $(TABDIR)
   74: 	cp -r html/res/adm/pages/* /home/httpd/html/res/adm/pages
   75: 	cp -r html/adm/* /home/httpd/html/adm
   76: 	cp -r homework/templates /home/httpd/html/res/adm/includes
   77: 	cp homework/capa.units /home/httpd/html/res/adm/includes/
   78: 	cp publisher/publisher.html /home/httpd/html/adm
   79: 	cp $(RATTARGETS) $(RATDIR)

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