File: Makefile.cvs

package info (click to toggle)
deskmenu 1.4.2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 696 kB
  • ctags: 230
  • sloc: sh: 2,964; ansic: 1,927; makefile: 54
file content (20 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
default: all
clean:
	find . -name Makefile.in | xargs rm
	rm -f configure
	rm -f aclocal.m4
	rm -f src/stamp-h.in
	rm -rf autom4te.cache

all:
	aclocal
	autoconf
	autoheader
	automake -a

generate-tags:
	find -iname '*.c' -print0 -o -iname '*.h' -print0 | xargs -0 ctags -f functions
	find -iname '*.c' -print0 -o -iname '*.h' -print0 | xargs -0 ctags

remove-tags:
	find -iname 'tags' -print0 -o -iname 'functions' -print0 | xargs -0 rm