24 lines
732 B
Makefile
24 lines
732 B
Makefile
SUBDIRS = archiver capplets control-center po intl
|
|
#I removed the root-manager for now
|
|
#
|
|
# it generated this error :
|
|
# root-manager.c:55:31: security/pam_appl.h: No such file or directory
|
|
# while compiling. I guess we need to check for pam or something
|
|
# in the configure.in file. Since we are not using it now, i will
|
|
# remove it from the default build. Chema
|
|
|
|
dist-hook: control-center.spec
|
|
cp control-center.spec $(distdir)
|
|
|
|
ccenterdir = $(datadir)/control-center/capplets
|
|
paneldir = $(datadir)/gnome/apps/Settings
|
|
|
|
Directory_files = \
|
|
Gnome.directory
|
|
|
|
install-data-local:
|
|
$(INSTALL_DATA) $(srcdir)/Gnome.directory $(DESTDIR)$(ccenterdir)/.directory
|
|
|
|
EXTRA_DIST = \
|
|
control-center.spec.in \
|
|
$(Directory_files)
|