Annotation of loncom/Makefile, revision 1.10
1.1 albertel 1: #Installation Makefile for entire com target
2: # Right now everything is done here, maybe a recursive make is a better idea?
3:
4:
5: PERLDIR=/home/httpd/perl
6: APACHEMODULES=/home/httpd/lib/perl/Apache
1.4 albertel 7: PERLSODIR=/usr/local/lib/site_perl/i386-linux/
1.7 albertel 8: JSMODULES=/home/httpd/html/res/adm/includes/
1.8 albertel 9: TABDIR=/home/httpd/lonTabs
1.1 albertel 10:
1.5 albertel 11: PERLTARGETS=lonc lond loncron lonsql
1.1 albertel 12: AMTARGETS=lonnet/perl/lonrep.pm lonnet/perl/lonnet.pm \
13: auth/lonlogin.pm auth/lonauth.pm auth/lonracc.pm \
1.3 albertel 14: auth/loncacc.pm auth/lonacc.pm homework/lonproblem.pm \
1.4 albertel 15: auth/lonroles.pm auth/lonlogout.pm \
16: modules/TexConvert/tthperl/lontex.pm \
17: modules/TexConvert/tthperl/lontexconvert.pm \
1.6 albertel 18: modules/TexConvert/tthperl/tth.pm \
1.7 albertel 19: xml/lonxml.pm xml/style.pm xml/londefdef.pm xml/run.pm \
20: xml/scripttag.pm xml/outtext.pm homework/lonhomework.pm \
1.8 albertel 21: homework/test.pm homework/inputtags.pm homework/structuretags.pm \
22: homework/response.pm homework/caparesponse/caparesponse.pm
1.7 albertel 23:
1.4 albertel 24: PERLSOTARGETS=modules/TexConvert/tthperl/tth.so \
1.8 albertel 25: modules/TexConvert/tthperl/tth.bs modules/TexConvert/tthperl/tth.pm \
26: homework/caparesponse/capa.so homework/caparesponse/capa.pm \
27: homework/caparesponse/capa.bs
28:
1.10 ! albertel 29: JSTARGETS=auth/londes.js homework/default_homework.lcpm
1.1 albertel 30:
1.8 albertel 31: TABTARGETS=interface/filetypes.tab
32:
1.1 albertel 33: install: $(PERLTARGETS) $(AMTARGETS)
34: cp $(PERLTARGETS) $(PERLDIR)
35: cp $(AMTARGETS) $(APACHEMODULES)
1.4 albertel 36: #cd modules/TexConvert/tthperl; tcsh commands
37: #cd ../../..
38: cp $(PERLSOTARGETS) $(PERLSODIR)
1.7 albertel 39: cp $(JSTARGETS) $(JSMODULES)
1.8 albertel 40: cp $(TABTARGETS) $(TABDIR)
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>