File: makefile.vcpp

package info (click to toggle)
galib 2.4.7-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,216 kB
  • ctags: 3,153
  • sloc: cpp: 23,666; ansic: 520; makefile: 247; sh: 93
file content (33 lines) | stat: -rw-r--r-- 500 bytes parent folder | download | duplicates (4)
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
# -*- Mode: makefile -*-
# Makefile to build GAlib with Microsoft tools
# Copyright (c) 1996-2005 Matthew Wall, all rights reserved

all: lib ex

lib:
	cd ga
	nmake /nologo /f makefile.vcpp
	cd ..

ex:
	cd examples
	nmake /nologo /f makefile.vcpp
	cd ..

test:
	cd examples
	nmake /nologo /f makefile.vcpp test
	cd ..

clean:
	cd ga
	nmake /nologo /f makefile.vcpp clean
	cd ..
	cd examples
	nmake /nologo /f makefile.vcpp clean
	cd ..

install:
	cd ga
	nmake /nologo /f makefile.vcpp install
	cd ..