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 ..
|