dcantrell / pycoreutils

Python implementation of basic Unix utilities, modeled to support GNU coreutils features.

This URL has Read+Write access

pycoreutils / Makefile
100644 37 lines (26 sloc) 0.745 kb
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
34
35
36
37
PKG := pycoreutils
VER := 0.1
 
REPO := https://pycoreutils.googlecode.com/svn
 
DESTDIR ?= /usr/local
 
all:
@echo "Available targets:"
@echo " changelog Generate new ChangeLog"
@echo " install Install pycoreutils to target directories"
@echo " tag Tag repository as v$(VER)"
@echo " dist-gzip Generate a release archive ($(PKG)-$(VER).tar.gz)"
@echo " release Perform 'make tag && make dist-gzip'"
@echo " dmg Make a MacOS X pkg bundle and put it in a dmg file"
 
changelog:
svn log > ChangeLog
 
install:
@echo "WRITEME"
 
tag:
@echo "WRITEME"
 
dist-gzip:
@echo "WRITEME"
 
release:
@echo "WRITEME"
 
dmg:
@echo "WRITEME"
 
clean:
-rm -rf $(PKG)-$(VER) $(PKG)-$(VER).tar.gz