File: makefile.mak

package info (click to toggle)
pigment-python 0.3.12-2
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 2,820 kB
  • ctags: 2,955
  • sloc: python: 11,664; sh: 10,131; makefile: 251; ansic: 97
file content (17 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## Makefile for building Pigment with MSVC6
## Usage: nmake -f makefile.mak [TARGET]

PROJECTS = pypgm

all: sub-all

sub-all:
	for %d in ($(PROJECTS)) do nmake -nologo -f makefile.mak sub-one PROJECT=%d TARGET=all

clean: sub-clean

sub-clean:
	for %d in ($(PROJECTS)) do nmake -nologo -f makefile.mak sub-one PROJECT=%d TARGET=clean

sub-one:
	@nmake -nologo -f $(PROJECT).mak $(TARGET)