ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/dtflickr/trunk/GNUmakefile
Revision: 39
Committed: 2009-08-16T03:27:21-07:00 (15 years, 10 months ago) by douglas
Content type: text/x-makefile
File size: 542 byte(s)
Log Message:
No longer depend on simplejson as it is included with Python 2.6 and up as json; better Windows Vista installer support; get ready to release as 1.4.

File Contents

# Content
1 # DT Flickr
2 #
3 # Douglas Thrift
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
19 ifeq ($(OS),Windows_NT)
20 $(setup) bdist_wininst -p win32 --user-access-control auto
21 $(setup) bdist_wininst -p win-amd64 --user-access-control auto
22 endif
23
24 build:
25 $(setup) build
26
27 clean:
28 $(setup) clean
29
30 register:
31 $(setup) register
32
33 ifneq ($(OS),Windows_NT)
34 source:
35 $(setup) sdist --formats bztar,gztar,zip
36 endif

Properties

Name Value
svn:keywords Id
svn:mime-type text/x-makefile