1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
#
# Makefile for dcl-5.9x
#
##all:
## platex *.tex
#
# Makefile for grph1
#
ROOTDIR = ..
SUBDIRS = etc gokuraku grph1 grph2 math1 \
math2 misc1 misc2 rakuraku sample
!include $(ROOTDIR)\MkInclude.win
build:
@$(MAKE) /$(MAKEFLAGS) /NOLOGO /S /f makefile.win subdirs \
SUBDIRS_POSTTARGET=build-exec
build-exec:
@echo Starting
install:
@$(MAKE) /$(MAKEFLAGS) /NOLOGO /S /f makefile.win subdirs \
SUBDIRS_PRETARGET=install-exec
install-exec-unique:
clean:
@$(MAKE) /$(MAKEFLAGS) /NOLOGO /S /f makefile.win subdirs \
SUBDIRS_PRETARGET=clean-exec
clean-exec-unique:
|