home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / perl4036.zip / x2p / Makefile.SH < prev    next >
Makefile  |  1993-02-08  |  3KB  |  161 lines

  1. case "$0" in
  2. */*) cd `expr X$0 : 'X\(.*\)/'` ;;
  3. esac
  4. case $CONFIG in
  5. '')
  6.     if test ! -f config.sh; then
  7.     ln ../config.sh . || \
  8.     ln -s ../config.sh . || \
  9.     ln ../../config.sh . || \
  10.     ln ../../../config.sh . || \
  11.     (echo "Can't find config.sh."; exit 1)
  12.     fi 2>/dev/null
  13.     . ./config.sh
  14.     ;;
  15. esac
  16. echo "Extracting x2p/Makefile (with variable substitutions)"
  17. rm -f Makefile
  18. cat >Makefile <<!GROK!THIS!
  19. # $RCSfile: Makefile.SH,v $$Revision: 4.0.1.3 $$Date: 92/06/08 16:11:32 $
  20. #
  21. # $Log:    Makefile.SH,v $
  22. # Revision 4.0.1.3  92/06/08  16:11:32  lwall
  23. # patch20: SH files didn't work well with symbolic links
  24. # patch20: cray didn't give enough memory to /bin/sh
  25. # patch20: makefiles now display new shift/reduce expectations
  26. # Revision 4.0.1.2  91/11/05  19:19:04  lwall
  27. # patch11: random cleanup
  28. # Revision 4.0.1.1  91/06/07  12:12:14  lwall
  29. # patch4: cflags now emits entire cc command except for the filename
  30. # Revision 4.0  91/03/20  01:57:03  lwall
  31. # 4.0 baseline.
  32.  
  33. CC = $cc
  34. YACC = $yacc
  35. bin = $bin
  36. lib = $lib
  37. mansrc = $mansrc
  38. manext = $manext
  39. LDFLAGS = $ldflags
  40. SMALL = $small
  41. LARGE = $large $split
  42. mallocsrc = $mallocsrc
  43. mallocobj = $mallocobj
  44. shellflags = $shellflags
  45.  
  46. libs = $libs
  47. !GROK!THIS!
  48.  
  49. cat >>Makefile <<'!NO!SUBS!'
  50.  
  51. CCCMD = `sh $(shellflags) cflags $@`
  52.  
  53. public = a2p s2p find2perl
  54.  
  55. private = 
  56.  
  57. manpages = a2p.man s2p.man
  58.  
  59. util =
  60.  
  61. sh = Makefile.SH makedepend.SH
  62.  
  63. h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
  64.  
  65. c = hash.c $(mallocsrc) str.c util.c walk.c
  66.  
  67. obj = hash.o $(mallocobj) str.o util.o walk.o
  68.  
  69. lintflags = -phbvxac
  70.  
  71. addedbyconf = Makefile.old bsd eunice filexp loc pdp11 usg v7
  72.  
  73. # grrr
  74. SHELL = /bin/sh
  75.  
  76. .c.o:
  77.     $(CCCMD) $*.c
  78.  
  79. all: $(public) $(private) $(util)
  80.     touch all
  81.  
  82. a2p: $(obj) a2p.o
  83.     $(CC) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p
  84.  
  85. a2p.c: a2p.y
  86.     @ echo Expect 231 shift/reduce conflicts...
  87.     $(YACC) a2p.y
  88.     mv y.tab.c a2p.c
  89.  
  90. a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h str.h hash.h
  91.     $(CCCMD) $(LARGE) a2p.c
  92.  
  93. install: a2p s2p
  94. # won't work with csh
  95.     export PATH || exit 1
  96.     - mv $(bin)/a2p $(bin)/a2p.old 2>/dev/null
  97.     - mv $(bin)/s2p $(bin)/s2p.old 2>/dev/null
  98.     - if test `pwd` != $(bin); then cp $(public) $(bin); fi
  99.     cd $(bin); \
  100. for pub in $(public); do \
  101. chmod +x `basename $$pub`; \
  102. done
  103.     - if test `pwd` != $(mansrc); then \
  104. for page in $(manpages); do \
  105. cp $$page $(mansrc)/`basename $$page .man`.$(manext); \
  106. done; \
  107. fi
  108.  
  109. clean:
  110.     rm -f a2p *.o a2p.c
  111.  
  112. realclean: clean
  113.     rm -f *.orig */*.orig core $(addedbyconf) a2p.c s2p find2perl all cflags
  114.  
  115. # The following lint has practically everything turned on.  Unfortunately,
  116. # you have to wade through a lot of mumbo jumbo that can't be suppressed.
  117. # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
  118. # for that spot.
  119.  
  120. lint:
  121.     lint $(lintflags) $(defs) $(c) > a2p.fuzz
  122.  
  123. depend: $(mallocsrc) ../makedepend
  124.     ../makedepend
  125.  
  126. clist:
  127.     echo $(c) | tr ' ' '\012' >.clist
  128.  
  129. hlist:
  130.     echo $(h) | tr ' ' '\012' >.hlist
  131.  
  132. shlist:
  133.     echo $(sh) | tr ' ' '\012' >.shlist
  134.  
  135. config.sh: ../config.sh
  136.     rm -f config.sh
  137.     ln ../config.sh .
  138.  
  139. malloc.c: ../malloc.c
  140.     sed 's/"perl.h"/"..\/perl.h"/' ../malloc.c >malloc.c
  141.  
  142. # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
  143. $(obj):
  144.     @ echo "You haven't done a "'"make depend" yet!'; exit 1
  145. makedepend: makedepend.SH
  146.     /bin/sh $(shellflags) makedepend.SH
  147. !NO!SUBS!
  148. $eunicefix Makefile
  149. case `pwd` in
  150. *SH)
  151.     $rm -f ../Makefile
  152.     ln Makefile ../Makefile
  153.     ;;
  154. esac
  155. rm -f makefile
  156.