File: makefile.vc

package info (click to toggle)
ossim 1.8.16-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 24,156 kB
  • ctags: 31,345
  • sloc: cpp: 324,330; ansic: 14,940; sh: 7,473; pascal: 1,072; perl: 306; makefile: 207; lex: 183; xml: 141; sql: 78; csh: 4; php: 1
file content (38 lines) | stat: -rw-r--r-- 802 bytes parent folder | download
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
###
# $Id: makefile.vc 16136 2009-12-18 15:09:14Z dburken $
#
# Windows nmake make file.  This code should compile with the Microsoft .NET
# compiler.
# 
# Currently for a typical build on windows you would do the following:
#
# - cd to the ossim top and edit its nmake.opt file appropriately.
# - nmake /f makefile
# - nmake /f makefile install (if you want the apps in the bin directory.
#
# NOTE:  If you make shared apps it's handy to copy the ossim.dll to the bin
#        directory. 
###

!INCLUDE nmake.opt

default:
	cd src
	$(MAKE) /f makefile.vc
	cd ..

install:
	cd src
	$(MAKE) /f makefile.vc install
	cd ..
	$(CP) $(LIBDIR)\ossim.dll $(BINDIR)
	$(CP) $(LIBDIR)\ossim.dll.manifest $(BINDIR)

clean:
	cd src
	$(MAKE) /f makefile.vc clean
	cd ..
	$(RM) lib\*.*

clobber:	clean
	$(RM) bin\*.*