File: Makefile

package info (click to toggle)
gkrellmss 2.6-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 200 kB
  • ctags: 272
  • sloc: ansic: 2,092; makefile: 174; sh: 144
file content (33 lines) | stat: -rw-r--r-- 686 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
21
22
23
24
25
26
27
28
29
30
31
32
33
PLUGIN_INSTALLDIR=/usr/local/lib/gkrellm/plugins

LOCALEDIR ?= /usr/share/locale

export PLUGIN_INSTALLDIR LOCALEDIR

enable_nls=1
export enable_nls

all:
	(cd po && ${MAKE} all)
	(cd src && ${MAKE} )

alsa5:
	(cd po && ${MAKE} all)
	(cd src && ${MAKE} alsa5=1)

install:
	(cd po && ${MAKE} install)
	(cd src && ${MAKE} install)

clean:
	(cd po && ${MAKE} clean)
	(cd src && ${MAKE} clean)

help:
	@echo ""
	@echo "make [without-alsa=yes] [without-esd=yes]"
	@echo ""
	@echo "    ALSA and Esound support (if found) are both compiled in"
	@echo "    by default.  Use a without-xxx option to override."
	@echo "    Either fftw3 or fftw2 will be used, with preference to fftw3."
	@echo ""