File: makefile.vc

package info (click to toggle)
itcl3 3.2.1-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,452 kB
  • ctags: 967
  • sloc: ansic: 13,746; sh: 1,394; tcl: 1,022; makefile: 206
file content (45 lines) | stat: -rw-r--r-- 1,198 bytes parent folder | download | duplicates (5)
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: makefile.vc,v 1.6 2001/05/22 22:41:33 davygrvy Exp $
######################################################################

!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