File: Makefile

package info (click to toggle)
gkrellmss 0.3-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 112 kB
  • ctags: 137
  • sloc: ansic: 937; makefile: 96
file content (20 lines) | stat: -rw-r--r-- 331 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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} )

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

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