align Makefile variables

This commit is contained in:
Vincent Hanquez 2005-03-08 10:43:25 +00:00
parent c5814e1fb5
commit dc7c7784d6
1 changed files with 10 additions and 8 deletions

View File

@ -1,12 +1,14 @@
VERSION = 0.51
MODULES = common plugins/gtkgui MODULES = common plugins/gtkgui
PREFIX = /usr PREFIX = /usr
DESTDIR = / DESTDIR = /
FIND= find -regex '.*\.\(\(glade\)\|\(py\)\|\(xpm\)\|\(gif\)\|\(png\)\|\(mo\)\|\(wav\)\)' FIND = find -regex '.*\.\(\(glade\)\|\(py\)\|\(xpm\)\|\(gif\)\|\(png\)\|\(mo\)\|\(wav\)\)'
FILES=`$(FIND)` FILES = `$(FIND)`
DIRS= `$(FIND) -exec dirname {} \; | sort -u` DIRS = `$(FIND) -exec dirname {} \; | sort -u`
FIND_LIB= find -regex '.*\.\(so\)' FIND_LIB = find -regex '.*\.\(so\)'
FILES_LIB=`$(FIND_LIB)` FILES_LIB = `$(FIND_LIB)`
SCRIPTS = \ SCRIPTS = \
scripts/gajim scripts/gajim