File: Makefile

package info (click to toggle)
wyg 1.1.3-4
  • links: PTS
  • area: main
  • in suites: potato
  • size: 348 kB
  • ctags: 71
  • sloc: sh: 1,515; ansic: 668; perl: 313; makefile: 83
file content (16 lines) | stat: -rw-r--r-- 381 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
## wyg Makefile
## Lars Kellogg-Stedman <lars@larsshack.org>
## http://www.larsshack.org/sw/wyg/

all: configure
	@echo "Eek, you forgot to run configure!"
	@echo "I'll do it for you, but you may want to take a look at"
	@echo "the documentation..."
	@echo
	./configure

configure: configure.in
	autoconf

dist:
	-find . -type d -name CVS -exec rm -rf {} \; > /dev/null 2>&1; true