File: Makefile

package info (click to toggle)
tantan 40-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 508 kB
  • sloc: cpp: 2,480; sh: 61; makefile: 33
file content (15 lines) | stat: -rw-r--r-- 244 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all:
	@cd src && ${MAKE}

prefix = /usr/local
exec_prefix = ${prefix}
bindir = ${exec_prefix}/bin
install: all
	mkdir -p ${bindir}
	cp bin/tantan ${bindir}

clean:
	@cd src && ${MAKE} clean

tag:
	git tag -m "" `git rev-list HEAD^ | grep -c .`