home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / cli / tcsh.zoo / source / makefile < prev   
Makefile  |  1991-11-12  |  11KB  |  374 lines

  1. # $Id: Makefile,v 1.6 90/12/12 08:23:27 christos Exp $
  2. #    Makefile    4.3    6/11/83
  3. #
  4. # C Shell with process control; VM/UNIX VAX Makefile
  5. # Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
  6. #
  7. # With an input editor, command completion, etc. and ported to all sorts of
  8. # things; Paul Placeway, CIS Dept., Ohio State University
  9. #
  10. #SHELL=/bin/sh
  11. VERSION=6.00
  12. BUILD=tcsh
  13.  
  14. ################################################################
  15. ## CLAGS.  For various -D things, see config.h
  16. ################################################################
  17. #
  18. # These are the default suffixes from .c to .o and -c to get there
  19. # but to use the global optimizer on the mips boxes, see below
  20. #
  21. SUF=o
  22. CF=-c
  23.  
  24. LFLAGS=-I.
  25. #LFLAGS=-Zn10000            # hpux lint
  26.  
  27. #CFLAGS= -I. -g
  28. #CFLAGS= -I. -O
  29.  
  30. #CFLAGS= -g -pg -I. -DPROF
  31. #CFLAGS= -O -pg -I. -DPROF
  32.  
  33. # gcc 1.37-
  34. #CFLAGS=-O -I. -finline-functions -fstrength-reduce 
  35.  
  36. # gcc 1.37+
  37. CFLAGS=-O -I. -fcombine-regs -finline-functions -fstrength-reduce #-msoft-float
  38.  
  39. #CFLAGS= -O -I. -fvolatile
  40.  
  41. # for silicon graphics (and other mips compilers) -- use the
  42. # global optimizer! (-O3).
  43. #CFLAGS= -O3 -I. 
  44. #CF=-j
  45. #SUF=u
  46. #.SUFFIXES: .u                 ## Ultrix needs that
  47.  
  48. # mips systems
  49. # CFLAGS= -I. -O -systype bsd43 -Wf,-XNd5000 -Wf,-XNp6000 -Olimit 2000
  50.  
  51. # for at&t machines
  52. #CFLAGS= -O -Ksd -I.
  53.  
  54. # for convexen
  55. #CFLAGS= -I. -ext -tm c1
  56.  
  57. # Stardent Titan
  58. #CFLAGS = -I. -O -43
  59.  
  60. # Apollo's with cc [apollo builtins don't work with gcc]
  61. # and apollo should not define __STDC__ if it does not have
  62. # the standard header files. RT's (aos4.3) need that too;
  63. # you might want to skip the -O on the rt's... Not very wise.
  64. #DFLAGS=-U__STDC__ 
  65. DFLAGS=
  66.  
  67.  
  68. ################################################################
  69. ## LDLAGS.  Define something here if you need to
  70. ################################################################
  71. LDFLAGS=
  72.  
  73. ################################################################
  74. ## LIBES.  Pick one, or roll your own.
  75. ################################################################
  76. LIBES= -ltermcap        ## BSD style things, hpux
  77. #LIBES= -ltermcap -lcs        ## Mach
  78. #LIBES= -lcurses        ## Sys V3 w/o networking
  79. #LIBES= -lcurses -lnet        ## Sys V3 with networking
  80. #LIBES= -lcurses -ldir        ## Sys V2 w/o networking [needs directory lib]
  81. #LIBES= -lcurses -ldir -lnet    ## Sys V2 with networking [needs directory lib]
  82. #LIBES= -lcurses -lsocket -lbsd    ## Amdahl UTS 2.1
  83. #LIBES= -lcurses -lbsd        ## For Irix3.1 on SGI-IRIS4D
  84. #LIBES= -lcurses -lsun -lbsd -lc_s ## For Irix3.3 on SGI-IRIS4D (w/ yp)
  85. #LIBES= -lcurses -lbsd -lc_s    ## For Irix3.3 on SGI-IRIS4D (wo/ yp)
  86. #LIBES= -lcurses -lbsd        ## For aix on an IBM 370 or rs6000 or ps2
  87. #LIBES= -lcurses -lcposix    ## ISC 2.2 
  88. #LIBES= -lcposix -lc_s -lcurses -linet ## ISC 2.2 with networking
  89. #LIBES= -ltermcap -ldir -lx    ## Xenix 386 style things
  90. #LIBES= -lcurses -lintl        ## SCO SysVR3.2v2.0
  91. #LIBES= -lposix -ltermcap    ## A/UX 2.0
  92. #LIBES= -ltermcap -lseq        ## Sequent's Dynix
  93. #LIBES= -lcurses -lsocket    ## Intel's hypercube
  94.  
  95. # The difficult choice of a c-compiler...
  96. # First, you should try your own c-compiler. 
  97. # Gcc -traditional is also a safe choice. 
  98. # If you think that you have good include files try gcc -Wall...
  99. # If you want to take out -traditional, make sure that your sys/ioctl.h
  100. # is fixed correctly, otherwise you'll be stopped for tty input!
  101. CC=    gcc -Wall 
  102. #CC=    cc
  103. #CC=    occ
  104. ED=    -ed
  105. AS=    -as
  106. RM=    -rm
  107. CXREF=    /usr/ucb/cxref
  108. VGRIND=    csh /usr/ucb/vgrind
  109. CTAGS=    /usr/ucb/ctags
  110. #XSTR= /usr/ucb/xstr
  111. SCCS=    /usr/local/sccs
  112. PARALLEL=12                # Make the multi-max run fast.
  113. #P=&                    # Use Sequent's parallel make
  114. P=
  115. DESTDIR=/usr/local
  116. MANSECT=1
  117. DESTBIN=${DESTDIR}/bin
  118. DESTMAN=${DESTDIR}/man/man${MANSECT}
  119. FTPAREA=/usr/spool/ftp
  120.  
  121. ASSRCS=    sh.c sh.dir.c sh.dol.c sh.err.c sh.exec.c sh.char.c \
  122.     sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \
  123.     sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \
  124.     sh.set.c sh.time.c sh.char.h sh.dir.h sh.proc.h sh.h 
  125. PSSRCS= sh.decls.h glob.c glob.h
  126. SHSRCS= ${ASSRCS} ${PSSRCS}
  127. SHOBJS=    sh.${SUF} sh.dir.${SUF} sh.dol.${SUF} sh.err.${SUF} sh.exec.${SUF} \
  128.     sh.char.${SUF} sh.exp.${SUF} sh.func.${SUF} sh.glob.${SUF} \
  129.     sh.hist.${SUF} sh.init.${SUF} sh.lex.${SUF} sh.misc.${SUF} \
  130.     sh.parse.${SUF} sh.print.${SUF} sh.proc.${SUF} sh.sem.${SUF} \
  131.     sh.set.${SUF} sh.time.${SUF} glob.${SUF}
  132.  
  133. TWSRCS= tw.decls.h tw.h tw.help.c tw.init.c tw.parse.c tw.spell.c
  134. TWOBJS=    tw.help.${SUF} tw.init.${SUF} tw.parse.${SUF} tw.spell.${SUF}
  135.  
  136. EDSRCS= ed.chared.c ed.decls.h ed.defns.c ed.h ed.init.c ed.inputl.c \
  137.     ed.refresh.c ed.screen.c ed.xmap.c
  138. EDOBJS=    ed.chared.${SUF} ed.refresh.${SUF} ed.screen.${SUF} ed.init.${SUF} \
  139.     ed.inputl.${SUF} ed.defns.${SUF} ed.xmap.${SUF}
  140.  
  141. TCSRCS= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.disc.c \
  142.     tc.func.c tc.os.c tc.os.h tc.printf.c tc.prompt.c \
  143.     tc.sched.c tc.sig.c tc.sig.h tc.str.c sh.types.h tc.vers.c tc.wait.h \
  144.     tc.who.c tc.h
  145. TCOBJS=    tc.alloc.${SUF} tc.bind.${SUF} tc.const.${SUF} tc.disc.${SUF} \
  146.     tc.func.${SUF} tc.os.${SUF} tc.printf.${SUF} \
  147.     tc.prompt.${SUF} tc.sched.${SUF} tc.sig.${SUF} tc.str.${SUF} \
  148.     tc.vers.${SUF} tc.who.${SUF} 
  149.  
  150. PVSRCS= Makefile
  151. AVSRCS= Fixes MAKEDIFFS MAKESHAR NewThings README FAQ \
  152.     WishList config_f.h eight-bit.me glob.3 patchlevel.h \
  153.     pathnames.h tcsh.man Ported
  154. VHSRCS=${PVSRCS} ${AVSRCS}
  155.  
  156. CONFSRCS=config/config.*
  157.  
  158. ALLSRCS=  ${SHSRCS} ${TWSRCS} ${EDSRCS} ${TCSRCS} ${VHSRCS}
  159. DISTSRCS= ${PSSRCS} ${TWSRCS} ${EDSRCS} ${TCSRCS} ${AVSRCS}
  160.  
  161.  
  162. OBJS= ${SHOBJS} ${TWOBJS} ${EDOBJS} ${TCOBJS}
  163.  
  164.  
  165. all: ${BUILD}
  166.  
  167. tcsh:$(P) ${OBJS} 
  168.     rm -f tcsh core
  169.     ${CC} ${LDFLAGS} ${CFLAGS} ${OBJS} -o tcsh ${LIBES}
  170.  
  171. tcsh.ps: tcsh.1
  172.     rm -f tcsh.ps
  173.     -ptroff -man tcsh.1 > tcsh.ps
  174.  
  175.  
  176. .c.${SUF}:
  177.     ${CC} ${CF} ${CFLAGS} ${DFLAGS} $<
  178.  
  179. # Don't do any special massaging of C files for sharing of strings!!
  180. # it causes weird segmentation faults on some systems.
  181. #.c.o:
  182. #    ${CC} -E ${CFLAGS} $*.c | ${XSTR} -c -
  183. #    ${CC} ${CF} ${CFLAGS} x.c 
  184. #    mv -f x.o $*.o
  185. #    rm -f x.c
  186.  
  187. #ed.init.o: ed.init.c
  188. #    ${CC} -E ${CFLAGS} $*.c | ${XSTR} -c -
  189. #    ${CC} -R ${CF} ${CF} x.c 
  190. #    mv -f x.o $*.o
  191. #    rm -f x.c
  192.  
  193. #strings.o: strings
  194. #    ${XSTR}
  195. #    ${CC} -c -R xs.c
  196. #    mv -f xs.o strings.o
  197. #    rm -f xs.c
  198.  
  199. ##.DEFAULT:
  200. ##    ${SCCS} get $<
  201.  
  202. ##.DEFAULT:
  203. ##    co $<
  204.  
  205. ed.defns.h: ed.defns.c
  206.     @rm -f $@
  207.     @echo '/* Do not edit this file, make creates it. */' > $@
  208.     @echo '#ifndef _h_ed_defns' >> $@
  209.     @echo '#define _h_ed_defns' >> $@
  210.     egrep '[FV]_' ed.defns.c | egrep '^#define' >> $@
  211.     @echo '#endif /* _h_ed_defns */' >> $@
  212.  
  213. sh.err.h: sh.err.c
  214.     @rm -f $@
  215.     @echo '/* Do not edit this file, make creates it. */' > $@
  216.     @echo '#ifndef _h_sh_err' >> $@
  217.     @echo '#define _h_sh_err' >> $@
  218.     egrep 'ERR_' sh.err.c | egrep '^#define' >> $@
  219.     @echo '#endif /* _h_sh_err */' >> $@
  220.  
  221. tc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h
  222.     @rm -f $@
  223.     @echo '/* Do not edit this file, make creates it. */' > $@
  224.     ${CC} -E -I. ${DFLAGS} tc.const.c | egrep 'Char STR' | \
  225.         sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
  226.         sort >> $@
  227.  
  228. csh.prof: ${OBJS} sh.prof.${SUF} mcrt0.${SUF}
  229.     rm -f csh.prof
  230.     ld -X mcrt0.${SUF} ${OBJS} -o csh.prof ${LIBES} -lc
  231.  
  232. sh.prof.${SUF}:
  233.     cp sh.c sh.prof.c
  234.     ${CC} ${CF} ${CFLAGS} -DPROF sh.prof.c
  235.  
  236. lint: tc.const.h ed.defns.h
  237.     lint ${LFLAGS} sh*.c tw*.c ed*.c tc.*.c ${LIBES}
  238.  
  239. print:
  240.     @pr READ_ME
  241.     @pr makefile makefile.*
  242.     @(size -l a.out; size *.${SUF}) | pr -h SIZES
  243.     @${CXREF} sh*.c | pr -h XREF
  244.     @ls -l | pr 
  245.     @pr sh*.h [a-rt-z]*.h sh*.c alloc.c
  246.  
  247. vprint:
  248.     @pr -l84 READ_ME TODO
  249.     @pr -l84 makefile makefile.*
  250.     @(size -l a.out; size *.${SUF}) | pr -l84 -h SIZES
  251.     @${CXREF} sh*.c | pr -l84 -h XREF
  252.     @ls -l | pr -l84
  253.     @${CXREF} sh*.c | pr -l84 -h XREF
  254.     @pr -l84 sh*.h [a-rt-z]*.h sh*.c alloc.c
  255.  
  256. vgrind:
  257.     @cp /dev/null index
  258.     @for i in *.h; do vgrind -t -h "C Shell" $$i >/crp/bill/csh/$$i.t; done
  259.     @for i in *.c; do vgrind -t -h "C Shell" $$i >/crp/bill/csh/$$i.t; done
  260.     @vgrind -t -x -h Index index >/crp/bill/csh/index.t
  261.  
  262. install: tcsh 
  263.     -mv  ${DESTBIN}/tcsh  ${DESTBIN}/tcsh.old
  264.     cp tcsh ${DESTBIN}/tcsh
  265.     strip ${DESTBIN}/tcsh
  266.     chmod 555 ${DESTBIN}/tcsh
  267.  
  268. manpage: tcsh.man
  269.     cp tcsh.man ${DESTMAN}/tcsh.${MANSECT}
  270.     chmod 444 ${DESTMAN}/tcsh.${MANSECT}
  271.  
  272. clean:
  273.     ${RM} -f a.out strings x.c xs.c tcsh _MAKE_LOG core
  274.     ${RM} -f *.${SUF} sh.prof.c ed.defns.h tc.const.h sh.err.h
  275.  
  276. veryclean: clean
  277.     ${RM} -f *~ #*
  278.  
  279. tags:    /tmp
  280.     ${CTAGS} sh*.c
  281.  
  282. tar:
  283.     rm -f tcsh-${VERSION}.tar.Z
  284.     rm -rf tcsh-${VERSION} 
  285.     mkdir tcsh-${VERSION} tcsh-${VERSION}/config
  286.     cp ${ALLSRCS} tcsh-${VERSION}
  287.     cp ${CONFSRCS} tcsh-${VERSION}/config
  288.     tar cvf - tcsh-${VERSION} | compress > tcsh-${VERSION}.tar.Z
  289.     rm -rf tcsh-${VERSION}
  290.  
  291. shar:    
  292.     rm -f tcsh-*.shar
  293.     rm -rf tcsh-${VERSION} 
  294.     mkdir tcsh-${VERSION} tcsh-${VERSION}/config
  295.     cp ${ALLSRCS} tcsh-${VERSION}
  296.     cp ${CONFSRCS} tcsh-${VERSION}/config
  297.     MAKESHAR ${VERSION} tcsh-${VERSION}/* tcsh-${VERSION}/config/*
  298.     rm -rf tcsh-${VERSION}
  299.  
  300. tcsh-${VERSION}.tar.Z:
  301.     rm -rf tcsh-${VERSION} 
  302.     rm -f tcsh-${VERSION}.tar tcsh-${VERSION}.tar.Z DIFFS.[123]
  303.     mkdir tcsh-${VERSION}
  304.     ./MAKEDIFFS bsd
  305.     mv DIFFS.1 DIFFS.2 DIFFS.3 tcsh-${VERSION}
  306.     cp ${DISTSRCS} tcsh-${VERSION}
  307.     mkdir tcsh-${VERSION}/config
  308.     cp ${CONFSRCS} tcsh-${VERSION}/config
  309.     cp Makefile tcsh-${VERSION}/Makefile.new
  310.     tar cvf - tcsh-${VERSION} | compress > tcsh-${VERSION}.tar.Z
  311.     rm -rf tcsh-${VERSION}
  312.  
  313. tcsh.tahoe-${VERSION}.tar.Z:
  314.     rm -rf tcsh.tahoe-${VERSION} 
  315.     rm -f tcsh.tahoe-${VERSION}.tar tcsh.tahoe-${VERSION}.tar.Z DIFFS.[123]
  316.     mkdir tcsh.tahoe-${VERSION}
  317.     ./MAKEDIFFS tahoe
  318.     mv DIFFS.1 DIFFS.2 DIFFS.3 tcsh.tahoe-${VERSION}
  319.     cp ${DISTSRCS} tcsh.tahoe-${VERSION}
  320.     mkdir tcsh.tahoe-${VERSION}/config
  321.     cp ${CONFSRCS} tcsh.tahoe-${VERSION}/config
  322.     cp Makefile tcsh.tahoe-${VERSION}/Makefile.new
  323.     tar cvf - tcsh.tahoe-${VERSION} | compress > tcsh.tahoe-${VERSION}.tar.Z
  324.     rm -rf tcsh.tahoe-${VERSION}
  325.  
  326. tcsh.reno-${VERSION}.tar.Z:
  327.     rm -rf tcsh.reno-${VERSION} 
  328.     rm -f tcsh.reno-${VERSION}.tar tcsh.reno-${VERSION}.tar.Z DIFFS.[123]
  329.     mkdir tcsh.reno-${VERSION}
  330.     ./MAKEDIFFS reno
  331.     mv DIFFS.1 DIFFS.2 DIFFS.3 tcsh.reno-${VERSION}
  332.     cp ${DISTSRCS} tcsh.reno-${VERSION}
  333.     mkdir tcsh.reno-${VERSION}/config
  334.     cp ${CONFSRCS} tcsh.reno-${VERSION}/config
  335.     cp Makefile tcsh.reno-${VERSION}/Makefile.new
  336.     tar cvf - tcsh.reno-${VERSION} | compress > tcsh.reno-${VERSION}.tar.Z
  337.     rm -rf tcsh.reno-${VERSION}
  338.  
  339. ftp: tcsh-${VERSION}.tar.Z tcsh.tahoe-${VERSION}.tar.Z
  340.     cp tcsh-${VERSION}.tar.Z tcsh.tahoe-${VERSION}.tar.Z ${FTPAREA}
  341.     cp tcsh.man ${FTPAREA}
  342.  
  343. #
  344. # Dependencies
  345. #
  346. config.h: config_f.h
  347.  
  348. TCH=tc.h tc.const.h tc.decls.h tc.os.h tc.sig.h
  349. SHH=sh.h sh.types.h sh.char.h sh.err.h sh.dir.h sh.proc.h pathnames.h \
  350.     sh.decls.h ${TCH}
  351. TWH=tw.h tw.decls.h
  352. EDH=ed.h ed.decls.h
  353.  
  354. # EDH
  355. EDINC=sh.${SUF} sh.func.${SUF} sh.lex.${SUF} sh.print.${SUF} sh.proc.${SUF} \
  356.       sh.set.${SUF} tc.bind.${SUF} tc.os.${SUF} tc.prompt.${SUF} \
  357.       tc.sched.${SUF} tw.parse.${SUF}
  358. ${EDOBJS} ${EDINC} : ${EDH}
  359.  
  360. # SHH
  361. ${OBJS}: config.h ${SHH}
  362.  
  363. # TWH
  364. TWINC=ed.chared.${SUF} ed.inputl.${SUF} sh.exec.${SUF} sh.func.${SUF} \
  365.       sh.set.${SUF} tc.func.${SUF}
  366. ${TWOBJS} ${TWINC}: ${TWH}
  367.  
  368. # glob.h
  369. glob.${SUF} sh.glob.${SUF}: glob.h
  370.  
  371. # ed.defns.h
  372. EDDINC=tc.bind.${SUF} tc.func.${SUF} tc.os.${SUF}
  373. ${EDOBJS} ${EDDINC}: ed.defns.h
  374.