Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 34e8b2d

Browse files
committedMar 28, 2014
Add a makefile to make an .tgz for distribution.
1 parent 4021297 commit 34e8b2d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
 

‎srcinstaller/Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
SOURCES = \
2+
Install\ Fink.tool
3+
4+
# The tarball
5+
dist: InstallFink.tgz
6+
7+
InstallFink.tgz: $(SOURCES)
8+
mkdir InstallFink
9+
cp -pR $(SOURCES) InstallFink/
10+
@COPYFILE_DISABLE=1 tar -czf InstallFink.tgz InstallFink
11+
rm -fr InstallFink
12+
13+
clean:
14+
rm -f *.tgz

0 commit comments

Comments
 (0)
Please sign in to comment.