ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/dtflickr/trunk/GNUmakefile
(Generate patch)

Comparing trunk/GNUmakefile (file contents):
Revision 32 by douglas, 2008-11-20T17:03:54-08:00 vs.
Revision 33 by douglas, 2009-05-08T13:46:11-07:00

# Line 4 | Line 4
4   #
5   # $Id$
6  
7 + ifeq ($(OS),Windows_NT)
8 + setup := python setup.py
9 + else
10   setup := $(CURDIR)/setup.py
11 + endif
12  
13   .PHONY: all binary build clean register source
14  
15   all: build
16  
17   binary:
18 <        $(setup) bdist --formats egg,wininst
18 >        $(setup) bdist --formats egg
19 > ifeq ($(OS),Windows_NT)
20 >        $(setup) bdist_wininst -p win32
21 >        $(setup) bdist_wininst -p win-amd64
22 > endif
23  
24   build:
25          $(setup) build
# Line 22 | Line 30 | clean:
30   register:
31          $(setup) register
32  
33 + ifneq ($(OS),Windows_NT)
34   source:
35          $(setup) sdist --formats bztar,gztar,zip
36 + endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines