File: Makefile

package info (click to toggle)
ptpd 2.1.0-debian1-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 400 kB
  • sloc: ansic: 4,237; sh: 76; makefile: 48
file content (17 lines) | stat: -rw-r--r-- 443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Root Makefile for ptpd, used for cutting releases

VERSION = ptpd-2.1.0

release:
	(cd src; make clean)
	mkdir $(VERSION)
	(cd $(VERSION); \
	ln -s ../src .; \
	ln -s ../doc .; \
	ln -s ../tools .; \
	ln -s ../COPYRIGHT .; \
	ln -s ../ChangeLog .; \
	ln -s ../Makefile .; \
	ln -s ../README .; \
	ln -s ../RELEASE_NOTES .)
	tar cvzf $(VERSION).tar.gz -L --exclude .o --exclude Doxygen --exclude .svn --exclude .dep --exclude core $(VERSION)