File: Makefile.create

package info (click to toggle)
xmms-singit 0.1.28-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 10,188 kB
  • ctags: 8,423
  • sloc: ansic: 36,625; cpp: 33,860; sh: 8,621; makefile: 443; sed: 16
file content (28 lines) | stat: -rw-r--r-- 716 bytes parent folder | download | duplicates (2)
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

################################################################
# We have to touch "config.h.in" to circumvent a autoheader bug
# if no changes to "config.h.in" were made.
# This prevents running missing on make (after configure)
################################################################

all:
	@echo ""
	@echo "This Makefile (re-)creates the configure-stack"
	@echo ""
	@echo "1. aclocal"
	aclocal
	@echo "2. autoheader"
	autoheader
	touch config.h.in
	@echo "3. automake"
	automake --add-missing --copy
	@echo "4. autoconf"
	autoconf -Wall
	@echo "5. cleanup"
	rm -r autom4te.cache/
	@echo ""
	@echo "  Please run ./configure"
	@echo "  Help and options available: ./configure --help"
	@echo ""

.SILENT: