home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / DMAKE38A.ZIP / MAKEFILE.MK < prev    next >
Makefile  |  1992-01-27  |  12KB  |  339 lines

  1. #             //// Makefile for DMAKE. \\\\
  2. # The target system is characterized by the following macros imported from
  3. # the environment.
  4. #
  5. #    OS          - gives the class of operating system
  6. #    OSRELEASE     - optionally gives the particular release of the OS above.
  7. #    OSENVIRONMENT - optionally gives the environment under which the above
  8. #            OS is in use.
  9. #
  10. # For valid values for the above macros consult the readme/* files or type
  11. # 'make' by itself to get a summary of what is available.
  12.  
  13. # First target in the makefile, do this so that targets declared in the
  14. # included files are never marked as being the first *default* target.
  15. first : all ;
  16.  
  17. #Enable keeping of state for future compiles
  18. .KEEP_STATE := _state.mk
  19.  
  20. # Pull in the configuration macros, from the environment.  OS is required,
  21. # OSRELEASE, and OSENVIRONMENT are optional.
  22. .IF $(OS) == $(NULL)
  23.    .IMPORT : OS
  24. .END
  25. .IMPORT .IGNORE : OSRELEASE OSENVIRONMENT TMPDIR
  26.  
  27. # Define $(PUBLIC)
  28. _osenv  := $(OSENVIRONMENT)$(DIRSEPSTR)
  29. _osre   := $(OSRELEASE)$(DIRSEPSTR)$(!null,$(OSENVIRONMENT) $(_osenv))
  30. ENVDIR   = $(OS)$(DIRSEPSTR)$(!null,$(OSRELEASE) $(_osre))
  31. PUBLIC   = $(ENVDIR)public.h
  32. STARTUP := startup.mk
  33.  
  34. # Define the source files
  35. SRC =\
  36.     infer.c make.c stat.c expand.c dmstring.c hash.c dag.c dmake.c\
  37.     path.c imacs.c sysintf.c parse.c getinp.c quit.c state.c\
  38.     basename.c dmdump.c macparse.c rulparse.c percent.c function.c
  39.  
  40. # Common Include files.
  41. HDR = dmake.h extern.h struct.h vextern.h patchlvl.h version.h
  42.  
  43. # Define the TARGET we are making, and where the OBJECT files go.
  44. OBJDIR := objects
  45. TARGET  = dmake$E
  46. CFLAGS += -I.
  47.  
  48. # Meta rule for making .o's from .c's (give our own so we can move object
  49. # to objects directory in a portable, compiler independent way)
  50. # Define it before the .INCLUDE so that different OS combinations can redefine
  51. # it.
  52. %$O : %.c
  53. .IF $(SHELL) == mpw
  54.     %$(CC) $(CFLAGS) -o :$(OBJDIR:s,/,:,):$@ $<
  55. .ELSE
  56.     %$(CC) -c $(CFLAGS) $<
  57. .IF $(SHELL) != $(COMSPEC)
  58.     mv $(@:f) $(OBJDIR)
  59. .ELSE
  60.     +copy $(@:f) $(OBJDIR)
  61.     +del $(@:f)
  62. .ENDIF
  63. .ENDIF
  64.  
  65. # Pull in the proper configuration files, based on the value of OS.
  66. .INCLUDE : $(OS)/config.mk
  67. .INCLUDE : dbug/dbug.mk
  68.  
  69. # Set the .SOURCE targets so that we look for things in the right place.
  70. .SOURCE.c :^ .NULL
  71. .SOURCE.h :^ .NULL
  72. .SOURCE$O :^ $(OBJDIR)
  73. .PRECIOUS : $(HDR)
  74.  
  75. # Must come after the above INCLUDE so that it gets ALL objects.
  76. OBJECTS    := {$(ASRC:b) $(SRC:b)}$O
  77.  
  78. # The main target, make sure the objects directory exists first.
  79. # LDARGS is defined in config.mk file of each OS/OSRELEASE combination.
  80. all : $(TARGET) $(STARTUP);
  81. $(TARGET)  : $(OBJDIR)
  82. $(TARGET)  : $(OBJECTS);$(LD) $(LDARGS)
  83. .IF $(SHELL) == mpw
  84. $(STARTUP) : $(ENVDIR)$(STARTUP); duplicate :$(<:s,/,:,) $@
  85. .ELSE
  86. $(STARTUP) : $(ENVDIR)$(STARTUP); $(eq,$(SHELL),$(COMSPEC) +copy cp) $< $@
  87. .ENDIF
  88.  
  89. # how to make public.h
  90. public .PHONY : $(PUBLIC);
  91. $(PUBLIC) .SHELL .NOSTATE: $(SRC)
  92.     genpub -n DMAKE $< >$@
  93.     rcsclean $@ > /dev/null
  94.  
  95. # Other obvious targets...
  96. .IF $(SHELL) == mpw
  97. $(OBJDIR):;-newfolder $@
  98. .ELSE
  99. $(OBJDIR):;-$(eq,$(SHELL),$(COMSPEC) +md mkdir) $@
  100. .ENDIF
  101.  
  102. # remaining dependencies should be automatically generated
  103. sysintf$O  : $(OS)/sysintf.h
  104. ruletab$O  : $(OS)/startup.h  #khc 01NOV90 - dependency was missing
  105. $(OBJECTS) : $(HDR)
  106.  
  107. clean:;+- $(RM) -rf dmake$E dbdmake$E objects* $(STARTUP) _*state*.mk
  108.  
  109. # Rules for making the manual pages.
  110. man .SETDIR=man : dmake.nc dmake.uue ;
  111. dmake.nc : dmake.p ; scriptfix < $< > $@
  112. dmake.p  : dmake.tf; typeset -man -Tdumb $< > $@
  113. dmake.uue : dmake.p
  114.     compress -b 12 dmake.p
  115.     mv dmake.p.Z dmake.Z
  116.     uuencode dmake.Z dmake.Z >dmake.uue
  117.     /bin/rm -f dmake.Z
  118.  
  119. #--------------------------------------------------------------------------
  120. # Make the various archives for shipping the thing around.
  121. #
  122. archives : zoo tar shar;
  123.  
  124. zoo  .PHONY : dmake.zoo ;
  125. shar .PHONY : dmake.shar;
  126. tar  .PHONY : dmake.tar;
  127.  
  128. dmake.zoo  : dir-copy
  129. [
  130.     find dmake -type f -print | zoo aI $@
  131.     $(RM) -rf src-list dmake
  132. ]
  133.  
  134. dmake.shar : dir-copy
  135. [
  136.     find dmake -type f -print >src-list
  137.     xshar -vc -o$@ -L40 `cat src-list`
  138.     $(RM) -rf src-list dmake
  139. ]
  140.  
  141. dmake.tar : dir-copy
  142. [
  143.     tar cf $@ dmake
  144.     $(RM) -rf src-list dmake
  145. ]
  146.  
  147. dir-copy .PHONY : src-list
  148. [
  149.     echo 'tmp.tar .SILENT :$$(ALLSRC) ;tar -cf tmp.tar $$(ALLSRC)' >> $<
  150.     $(MAKECMD) -f $< tmp.tar
  151.     mkdir dmake
  152.     cd dmake
  153.     tar xf ../tmp.tar; chmod -R u+rw .
  154.     cd ..
  155.     /bin/rm -f tmp.tar
  156. ]
  157.  
  158. src-list : clean man
  159.     echo 'ALLSRC = \' >$@
  160.     find . -type f -print |\
  161.     sed -e 's/RCS\///' -e 's/,v//' -e 's/$$/\\/' -e 's/^\.\// /'|\
  162.     sort -u |\
  163.     grep -v tst | grep -v $@ | grep -v LICENSE |\
  164.     grep -v '\.zoo' | grep -v '\.tar'| grep -v '\.shar' >> $@
  165.     echo ' LICENSE' >> $@
  166.  
  167. #--------------------------------------------------------------------------
  168. # This section can be used to make the necessary script files so that dmake
  169. # can be bootstrapped.
  170. #
  171. #    dmake scripts    -- makes all the script files at once.
  172. #
  173. SH_n = $(@:s/swp-/-/:s,-,/,:s/scripts/${SCRIPTFILE}/)
  174. MS_n = MAKESTARTUP=$(@:s/swp-/-/:s,-,/,:s/scripts/startup.mk/)
  175. SH = $(SH_n:s/c40d/cd/:s/c50d/cd/:s/c51d/cd/:s/c60d/cd/:s/ibmc2/ibm/)
  176. MS = $(MS_n:s/c40d/cd/:s/c50d/cd/:s/c51d/cd/:s/c60d/cd/:s/ibmc2/ibm/)
  177. FIX-SH = $(SH:s,fix/,,)
  178.  
  179. scripts: unix-scripts atari-tos-scripts msdos-scripts os2-scripts\
  180.      apple-mac-scripts
  181.  
  182. # To add a new environment for UNIX, simply create the appropriate entry
  183. # in the style below for the macro which contains the OS, OSRELEASE and
  184. # OSENVIRONMENT flags.  Then add the entry as a recipe line for the target
  185. # unix-scripts.
  186. #
  187. unix-bsd43-scripts-flags   = OS=unix OSRELEASE=bsd43  OSENVIRONMENT=
  188. unix-bsd43-uw-scripts-flags= OS=unix OSRELEASE=bsd43  OSENVIRONMENT=uw
  189. unix-bsd43-vf-scripts-flags= OS=unix OSRELEASE=bsd43  OSENVIRONMENT=vf
  190. unix-sysvr4-scripts-flags  = OS=unix OSRELEASE=sysvr4 OSENVIRONMENT=
  191. unix-sysvr3-scripts-flags  = OS=unix OSRELEASE=sysvr3 OSENVIRONMENT=
  192. unix-sysvr3-pwd-scripts-flags  = OS=unix OSRELEASE=sysvr3 OSENVIRONMENT=pwd
  193. unix-xenix-scripts-flags  = OS=unix OSRELEASE=xenix OSENVIRONMENT=
  194. unix-xenix-pwd-scripts-flags  = OS=unix OSRELEASE=xenix OSENVIRONMENT=pwd
  195. unix-sysvr1-scripts-flags  = OS=unix OSRELEASE=sysvr1 OSENVIRONMENT=
  196. unix-386ix-scripts-flags   = OS=unix OSRELEASE=386ix  OSENVIRONMENT=
  197. unix-coherent-scripts-flags= OS=unix OSRELEASE=coherent OSENVIRONMENT=
  198. tos--scripts-flags         = OS=tos  OSRELEASE=       OSENVIRONMENT=
  199. mac--scripts-flags         = OS=mac  OSRELEASE=       OSENVIRONMENT=
  200.  
  201. unix-scripts .SWAP : clean
  202.     $(MAKE) SCRIPTFILE=make.sh unix-bsd43-scripts
  203.     $(MAKE) SCRIPTFILE=make.sh unix-bsd43-uw-scripts
  204.     $(MAKE) SCRIPTFILE=make.sh unix-bsd43-vf-scripts
  205.     $(MAKE) SCRIPTFILE=make.sh unix-sysvr4-scripts
  206.     $(MAKE) SCRIPTFILE=make.sh unix-sysvr3-scripts
  207.     $(MAKE) SCRIPTFILE=make.sh unix-sysvr3-pwd-scripts
  208.     $(MAKE) SCRIPTFILE=make.sh unix-xenix-scripts
  209.     $(MAKE) SCRIPTFILE=make.sh unix-xenix-pwd-scripts
  210.     $(MAKE) SCRIPTFILE=make.sh unix-sysvr1-scripts
  211.     $(MAKE) SCRIPTFILE=make.sh unix-386ix-scripts
  212.     $(MAKE) SCRIPTFILE=make.sh unix-coherent-scripts
  213.  
  214. unix-%-scripts .SWAP :
  215.     $(MAKECMD) -s $($@-flags) .KEEP_STATE:= public
  216.     $(MAKECMD) -ns .KEEP_STATE:= $(MS) $($@-flags) >$(SH)
  217.  
  218. tos-%-scripts .SWAP :
  219.     $(MAKECMD) -s $($@-flags) .KEEP_STATE:= public
  220.     $(MAKECMD) -ns .KEEP_STATE:= $(MS) $($@-flags) >$(SH)
  221.  
  222. atari-tos-scripts .SWAP : clean
  223.     $(MAKE) SCRIPTFILE=make.sh tos--scripts
  224.  
  225. apple-mac-scripts .SWAP : clean
  226.     $(MAKE) SCRIPTFILE=make.sh mac--scripts
  227.  
  228. mac-%-scripts .SWAP :
  229.     $(MAKECMD) -s $($@-flags) .KEEP_STATE:= public
  230.     $(MAKECMD) -ns .KEEP_STATE:= $(MS) $($@-flags) >$(SH)
  231.     sed 's/ mac\/\(.*\)$$/ :mac:\1/' <$(SH) >/tmp/t
  232.     /bin/mv /tmp/t $(SH)
  233.  
  234. # We make the standard dos scripts here, but we have to go and fix up the
  235. # mkXX.bat file since it contains names of temporary files for the response
  236. # files required by the linker.  We need to also construct the response file
  237. # contents.  These two functions are performed by the fix-msdos-%-scripts
  238. # meta-target.
  239. #
  240. # To add a new DOS environment just do what is described for adding a new
  241. # unix environment, and then make certain that the fix-msdos-%-scripts target
  242. # performs the correct function for the new environment.
  243. msdos-cf = OS=msdos OSENVIRONMENT=
  244. msdos-tccdos-scripts-flags = $(msdos-cf) OSRELEASE=tccdos SWAP=n
  245. msdos-tccdosswp-scripts-flags = $(msdos-cf) OSRELEASE=tccdos
  246. msdos-bccdos-scripts-flags = $(msdos-cf) OSRELEASE=bccdos SWAP=n
  247. msdos-bccdosswp-scripts-flags = $(msdos-cf) OSRELEASE=bccdos
  248. msdos-msc40dos-scripts-flags= $(msdos-cf) OSRELEASE=mscdos SWAP=n MSC_VER=4.0
  249. msdos-msc40dosswp-scripts-flags = $(msdos-cf) OSRELEASE=mscdos MSC_VER=4.0
  250. msdos-msc50dos-scripts-flags= $(msdos-cf) OSRELEASE=mscdos SWAP=n MSC_VER=5.0
  251. msdos-msc50dosswp-scripts-flags = $(msdos-cf) OSRELEASE=mscdos MSC_VER=5.0
  252. msdos-msc51dos-scripts-flags= $(msdos-cf) OSRELEASE=mscdos SWAP=n MSC_VER=5.1
  253. msdos-msc51dosswp-scripts-flags = $(msdos-cf) OSRELEASE=mscdos MSC_VER=5.1
  254. msdos-msc60dos-scripts-flags= $(msdos-cf) OSRELEASE=mscdos SWAP=n MSC_VER=6.0
  255. msdos-msc60dosswp-scripts-flags = $(msdos-cf) OSRELEASE=mscdos MSC_VER=6.0
  256. msdos-ztcdos-scripts-flags= $(msdos-cf) OSRELEASE=ztcdos SWAP=n
  257. msdos-ztcdosswp-scripts-flags= $(msdos-cf) OSRELEASE=ztcdos
  258.  
  259. msdos-scripts: clean\
  260.            msdos-tcc-scripts msdos-bcc-scripts\
  261.            msdos-msc-scripts msdos-ztc-scripts;
  262.  
  263. msdos-tcc-scripts .SWAP :
  264.     $(MAKE) SCRIPTFILE=mk.bat msdos-tccdos-scripts
  265.     $(MAKE) SCRIPTFILE=mkswp.bat msdos-tccdosswp-scripts
  266.  
  267. msdos-bcc-scripts .SWAP :
  268.     $(MAKE) SCRIPTFILE=mk.bat msdos-bccdos-scripts
  269.     $(MAKE) SCRIPTFILE=mkswp.bat msdos-bccdosswp-scripts
  270.  
  271. msdos-msc-scripts .SWAP :! 40 50 51 60
  272.     $(MAKE) SCRIPTFILE=mk$?.bat msdos-msc$?dos-scripts
  273.     $(MAKE) SCRIPTFILE=mk$?swp.bat msdos-msc$?dosswp-scripts
  274.  
  275. msdos-ztc-scripts .SWAP :
  276.     $(MAKE) SCRIPTFILE=mk.bat msdos-ztcdos-scripts
  277.     $(MAKE) SCRIPTFILE=mkswp.bat msdos-ztcdosswp-scripts
  278.  
  279. msdos-%-scripts .SWAP .SILENT:
  280.     $(MAKE) -s $($@-flags) .KEEP_STATE:= public
  281.     $(MAKE) -ns SHELL=command.com COMSPEC=command.com .KEEP_STATE:= $(MS) $($@-flags) >$(SH)
  282.     $(MAKE) -s $(MAKEMACROS) $(MS) $($@-flags) fix-msdos-$*-scripts
  283.  
  284.  
  285. # We make the standard OS/2 scripts here, but we have to go and fix up the
  286. # mkXX.cmd file since it contains names of temporary files for the response
  287. # files required by the linker.  We need to also construct the response file
  288. # contents.  These two functions are performed by the fix-msdos-%-scripts
  289. # meta-target.
  290. #
  291. # To add a new OS/2 environment just do what is described for adding a new
  292. # unix environment, and then make certain that the fix-msdos-%-scripts target
  293. # performs the correct function for the new environment.
  294. os2-cf = OS=os2 OSENVIRONMENT=
  295. os2-msc40dos-scripts-flags= $(os2-cf) OSRELEASE=mscdos SWAP=n MSC_VER=4.0
  296. os2-msc50dos-scripts-flags= $(os2-cf) OSRELEASE=mscdos SWAP=n MSC_VER=5.0
  297. os2-msc51dos-scripts-flags= $(os2-cf) OSRELEASE=mscdos SWAP=n MSC_VER=5.1
  298. os2-msc60dos-scripts-flags= $(os2-cf) OSRELEASE=mscdos SWAP=n MSC_VER=6.0
  299. os2-ibmc2-scripts-flags=    $(os2-cf) OSRELEASE=ibm SWAP=n MSC_VER=5.1
  300.  
  301. os2-scripts: clean os2-msc-scripts os2-ibm-scripts;
  302.  
  303. os2-msc-scripts .SWAP :! 40 50 51 60
  304.     $(MAKE) SCRIPTFILE=mk$?.cmd os2-msc$?dos-scripts
  305.  
  306. os2-ibm-scripts .SWAP :! c2
  307.     $(MAKE) SCRIPTFILE=mk$?.cmd os2-ibm$?-scripts
  308.  
  309. os2-%-scripts .SWAP :
  310.     $(MAKE) -s $($@-flags) .KEEP_STATE:= public
  311.     $(MAKE) -ns SHELL=cmd.exe COMSPEC=cmd.exe .KEEP_STATE:= $(MS) $($@-flags) >$(SH)
  312.     $(MAKE) -s $(MAKEMACROS) $(MS) $($@-flags) fix-os2-$*-scripts
  313.  
  314. # Signify NULL targets for the various MSC compiler versions.
  315. c2 40 50 51 60:;
  316.  
  317. # Go over the created script file and make sure all the '/' that are in
  318. # filenames are '\', and make sure the final link command line looks
  319. # reasonable.
  320. MAPOBJ = obj$(SWAP:s/y/swp/:s/n//).rsp
  321. MAPLIB = lib$(SWAP:s/y/swp/:s/n//).rsp
  322. OBJRSP = $(SH:s,fix/,,:s,${SCRIPTFILE},${MAPOBJ},)
  323. LIBRSP = $(SH:s,fix/,,:s,${SCRIPTFILE},${MAPLIB},)
  324. DOSOBJ = $(CSTARTUP) $(OBJDIR)/{$(OBJECTS)}
  325. fix-%-scripts:
  326.     tail -r $(FIX-SH) >tmp-sh-r
  327.     tail +3 tmp-sh-r | sed -e 's,/,\\,g' >tmp-out
  328.     tail -r tmp-out >$(FIX-SH)
  329.     head -2 tmp-sh-r |\
  330.     sed -e 's,\\usr\\tmp\\mkA[a-zA-Z]*[0-9]*,$(OBJRSP),'\
  331.         -e 's,\\usr\\tmp\\mkB[a-zA-Z]*[0-9]*,$(LIBRSP),' |\
  332.     sed -e 's,$(OS)/,$(OS)\\,g'\
  333.         -e 's,$(OS)/$(OSRELEASE)/,$(OS)\\$(OSRELEASE)\\,g'\
  334.         -e 's,$(OS)\\$(OSRELEASE)/,$(OS)\\$(OSRELEASE)\\,g'\
  335.         -e 's,$(OS)/$(OSRELEASE)\\,$(OS)\\$(OSRELEASE)\\,g' >>$(FIX-SH)
  336.     rm -f tmp-sh-r tmp-out
  337.     mv <+$(DOSOBJ:s,/,\\,:t"+\n")\n+> $(OBJRSP)
  338.     mv <+$(LDLIBS:s,/,\\,:t"+\n")\n+> $(LIBRSP)
  339.