blob: 6c9bb58f69c751efefc1c92d393e12874eee15a3 (
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
|
#
# NMAKE Makefile to build PROJ.4 on Windows
#
# This makefile.vc delegates making targets to src\makefile.vc
# so it's just a thin wrapper.
#
MAKE = nmake
RM = -del
default:
cd src
$(MAKE) /f makefile.vc
cd ..\nad
$(MAKE) /f makefile.vc
cd ..
clean:
cd src
$(MAKE) /f makefile.vc clean
cd ..\nad
$(MAKE) /f makefile.vc clean
cd ..
install-all:
cd src
$(MAKE) /f makefile.vc install
cd ..\nad
$(MAKE) /f makefile.vc install-all
cd ..
|