summaryrefslogtreecommitdiff
path: root/itcl/makefile.vc
blob: 7a79939772e715a6ba316d014c6b82e109de78a0 (plain)
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
36
37
38
39
40
41
42
43
44
45
######################################################################
#
#  Microsoft Visual C++ 5.0+ makefile for [Incr Tcl/Tk].
#
######################################################################
#
#  This is the main Visual C++ makefile for the Win32 distribution
#  of [incr Tcl/Tk].  To compile the distribution using Visual C++,
#  first open "config.vc" and follow the directions for editing the
#  approriate values for your setup.  This is not the TEA makefile.
#
######################################################################
#  $Id$
######################################################################

!include "rules.vc"
!include "config.vc"

MAKECMD	= nmake.exe -nologo /$(MAKEFLAGS) -f makefile.vc

release :
	cd itcl\win
	$(MAKECMD) release
	cd ..\..\itk\win
	$(MAKECMD) release

docs :
	@echo "ack!"

install :
	cd itcl\win
	$(MAKECMD) install
	cd ..\..\itk\win
	$(MAKECMD) install
	if exist ..\..\iwidgets\nul ( \
		cd ..\..\iwidgets\win &\
		$(MAKECMD) install \
	)

#dist-clean:
#   cd $(ITCLDIR)\Win
#   $(MAKECMD) clean
#   cd $(ITKDIR)\Win
#   $(MAKECMD) clean