home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / andere sprachen / perl5 / perl5.002 / x2p / makefile.sh < prev    next >
Encoding:
Makefile  |  1996-02-29  |  3.1 KB  |  147 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. mallocsrc = $mallocsrc
  33. mallocobj = $mallocobj
  34. shellflags = $shellflags
  35.  
  36. libs = $libs
  37. !GROK!THIS!
  38.  
  39. cat >>Makefile <<'!NO!SUBS!'
  40.  
  41. CCCMD = `sh $(shellflags) cflags $@`
  42.  
  43. public = a2p s2p find2perl
  44.  
  45. private = 
  46.  
  47. manpages = a2p.man s2p.man
  48.  
  49. util =
  50.  
  51. sh = Makefile.SH cflags.SH
  52. shextract = Makefile cflags
  53.  
  54. pl = find2perl.PL s2p.PL
  55. plextract = find2perl s2p
  56.  
  57. addedbyconf = $(shextract) $(plextract)
  58.  
  59. h = EXTERN.h INTERN.h ../config.h handy.h hash.h a2p.h str.h util.h
  60.  
  61. c = hash.c $(mallocsrc) str.c util.c walk.c
  62.  
  63. obj = hash.o $(mallocobj) str.o util.o walk.o
  64.  
  65. lintflags = -phbvxac
  66.  
  67. # grrr
  68. SHELL = /bin/sh
  69.  
  70. .c.o:
  71.     $(CCCMD) $*.c
  72.  
  73. all: $(public) $(private) $(util)
  74.     touch all
  75.  
  76. a2p: $(obj) a2p.o
  77.     $(CC) $(LDFLAGS) $(obj) a2p.o $(libs) -o a2p
  78.  
  79. # I now supply a2p.c with the kits, so the following section is
  80. # used only if you force byacc to run by saying
  81. # make  run_byacc
  82.  
  83. run_byacc:    FORCE
  84.     @ echo Expect many shift/reduce and reduce/reduce conflicts
  85.     $(BYACC) a2p.y
  86.     mv y.tab.c a2p.c
  87.  
  88. # We don't want to regenerate a2p.c, but it might appear out-of-date
  89. # after a patch is applied or a new distribution is made.
  90. a2p.c: a2p.y
  91.     -@touch a2p.c
  92.  
  93. a2p.o: a2p.c a2py.c a2p.h EXTERN.h util.h INTERN.h handy.h ../config.h str.h hash.h
  94.     $(CCCMD) $(LARGE) a2p.c
  95.  
  96. clean:
  97.     rm -f a2p *.o
  98.  
  99. realclean: clean
  100.     rm -f *.orig core $(addedbyconf) all malloc.c
  101.     rm -f GNUmakefile GNUmakefile.old
  102.  
  103. # The following lint has practically everything turned on.  Unfortunately,
  104. # you have to wade through a lot of mumbo jumbo that can't be suppressed.
  105. # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
  106. # for that spot.
  107.  
  108. lint:
  109.     lint $(lintflags) $(defs) $(c) > a2p.fuzz
  110.  
  111. depend: $(mallocsrc) ../makedepend
  112.     ../makedepend
  113.  
  114. clist:
  115.     echo $(c) | tr ' ' '\012' >.clist
  116.  
  117. hlist:
  118.     echo $(h) | tr ' ' '\012' >.hlist
  119.  
  120. shlist:
  121.     echo $(sh) | tr ' ' '\012' >.shlist
  122.  
  123. # These should be automatically generated
  124.  
  125. $(plextract):
  126.     ../miniperl -I../lib $@.PL
  127.  
  128. malloc.c: ../malloc.c
  129.     rm -f malloc.c
  130.     sed <../malloc.c >malloc.c \
  131.         -e 's/"perl.h"/"..\/perl.h"/' \
  132.         -e 's/my_exit/exit/'
  133.  
  134. # AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
  135. $(obj):
  136.     @ echo "You haven't done a "'"make depend" yet!'; exit 1
  137. makedepend: depend
  138. !NO!SUBS!
  139. $eunicefix Makefile
  140. case `pwd` in
  141. *SH)
  142.     $rm -f ../Makefile
  143.     ln Makefile ../Makefile
  144.     ;;
  145. esac
  146. rm -f GNUmakefile
  147.