home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / perl / Perl / x2p / Makefile.SH < prev    next >
Makefile  |  1995-12-05  |  3KB  |  139 lines

  1. case $CONFIG in
  2. '')
  3.     if test -f config.sh; then TOP=.;
  4.     elif test -f ../config.sh; then TOP=..;
  5.     elif test -f ../../config.sh; then TOP=../..;
  6.     elif test -f ../../../config.sh; then TOP=../../..;
  7.     elif test -f ../../../../config.sh; then TOP=../../../..;
  8.     else
  9.         echo "Can't find config.sh."; exit 1
  10.     fi
  11.     . $TOP/config.sh
  12.     ;;
  13. esac
  14. : This forces SH files to create target in same directory as SH file.
  15. : This is so that make depend always knows where to find SH derivatives.
  16. case "$0" in
  17. */*) cd `expr X$0 : 'X\(.*\)/'` ;;
  18. esac
  19.  
  20. echo "Extracting x2p/Makefile (with variable substitutions)"
  21. rm -f Makefile
  22. cat >Makefile <<!GROK!THIS!
  23. # $RCSfile: Makefile.SH,v $$Revision: 4.1 $$Date: 92/08/07 18:29:07 $
  24. #
  25. # $Log:    Makefile.SH,v $
  26.  
  27. CC = $cc
  28. BYACC = $byacc
  29. LDFLAGS = $ldflags
  30. SMALL = $small
  31. LARGE = $large $split
  32. MAB = $mab
  33. mallocsrc = $mallocsrc
  34. mallocobj = $mallocobj
  35. shellflags = $shellflags
  36.  
  37. libs = $libs
  38. !GROK!THIS!
  39.  
  40. cat >>Makefile <<'!NO!SUBS!'
  41.  
  42. CCCMD = `sh $(shellflags) cflags $@`
  43.  
  44. public = a2p s2p find2perl
  45.  
  46. private = 
  47.  
  48. manpages = a2p.man s2p.man
  49.  
  50. util =
  51.  
  52. sh = Makefile.SH cflags.SH find2perl.SH s2p.SH
  53.  
  54. addedbyconf = Makefile cflags find2perl s2p
  55.  
  56. h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
  57.  
  58. c = hash.c $(mallocsrc) str.c util.c walk.c
  59.  
  60. obj = hash.o $(mallocobj) str.o util.o walk.o
  61.  
  62. lintflags = -phbvxac
  63.  
  64. # grrr
  65. SHELL = /bin/sh
  66.  
  67. .c.o:
  68.     $(CCCMD) $(MAB) $*.c
  69.  
  70. all: $(public) $(private) $(util)
  71.     touch all
  72.  
  73. a2p: $(obj) a2p.o
  74.     $(CC) $(MAB) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p
  75.  
  76. # I now supply a2p.c with the kits, so the following section is
  77. # used only if you force byacc to run by saying
  78. # make  run_byacc
  79.  
  80. run_byacc:    FORCE
  81.     @ echo Expect many shift/reduce and reduce/reduce conflicts
  82.     $(BYACC) a2p.y
  83.     mv y.tab.c a2p.c
  84.  
  85. # We don't want to regenerate a2p.c, but it might appear out-of-date
  86. # after a patch is applied or a new distribution is made.
  87. a2p.c: a2p.y
  88.     -@touch 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) $(MAB) $(LARGE) a2p.c
  92.  
  93. clean:
  94.     rm -f a2p *.o
  95.  
  96. realclean: clean
  97.     rm -f *.orig core $(addedbyconf) all malloc.c
  98.     rm -f makefile makefile.old
  99.  
  100. # The following lint has practically everything turned on.  Unfortunately,
  101. # you have to wade through a lot of mumbo jumbo that can't be suppressed.
  102. # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
  103. # for that spot.
  104.  
  105. lint:
  106.     lint $(lintflags) $(defs) $(c) > a2p.fuzz
  107.  
  108. depend: $(mallocsrc) ../makedepend
  109.     ../makedepend
  110.  
  111. clist:
  112.     echo $(c) | tr ' ' '\012' >.clist
  113.  
  114. hlist:
  115.     echo $(h) | tr ' ' '\012' >.hlist
  116.  
  117. shlist:
  118.     echo $(sh) | tr ' ' '\012' >.shlist
  119.  
  120. malloc.c: ../malloc.c
  121.     rm -f malloc.c
  122.     sed <../malloc.c >malloc.c \
  123.         -e 's/"perl.h"/"..\/perl.h"/' \
  124.         -e 's/my_exit/exit/'
  125.  
  126. # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
  127. $(obj):
  128.     @ echo "You haven't done a "'"make depend" yet!'; exit 1
  129. makedepend: depend
  130. !NO!SUBS!
  131. $eunicefix Makefile
  132. case `pwd` in
  133. *SH)
  134.     $rm -f ../Makefile
  135.     ln Makefile ../Makefile
  136.     ;;
  137. esac
  138. rm -f makefile
  139.