mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
673bd9d7d5
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@69 dbcabf3a-b0e7-0310-adc4-f8d773084564
47 lines
981 B
Makefile
47 lines
981 B
Makefile
# create default-config.h
|
|
config.h: default-config.h
|
|
|
|
default-config.h: $(srcdir)/config
|
|
$(srcdir)/file2header.sh $(srcdir)/config > default-config.h
|
|
|
|
if BUILD_PLUGINS
|
|
PLUGINS=plugins
|
|
endif
|
|
if BUILD_SERVERTEST
|
|
SERVERTEST=servertest
|
|
endif
|
|
|
|
SUBDIRS = po intl macros src $(PLUGINS) $(SERVERTEST) docs
|
|
|
|
## to automatically rebuild aclocal.m4 if any of the macros in
|
|
## `macros/' change
|
|
@MAINT@include macros/macros.dep
|
|
@MAINT@macros/macros.dep: $(srcdir)/macros/Makefile.am
|
|
@MAINT@ cd macros && $(MAKE) macros.dep
|
|
|
|
if HAVE_GNOME
|
|
appletdir = $(datadir)/applets/Network
|
|
applet_DATA = irssi.desktop
|
|
|
|
corbadir = $(sysconfdir)/CORBA/servers
|
|
corba_DATA = irssi.gnorba
|
|
endif
|
|
|
|
confdir = $(sysconfdir)/irssi
|
|
conf_DATA = config colorless.theme
|
|
|
|
EXTRA_DIST = window-views-patch.diff \
|
|
autogen.sh \
|
|
README-HEBREW \
|
|
COMMANDS \
|
|
file2header.sh \
|
|
irssi.spec \
|
|
$(conf_DATA) \
|
|
irssi.gnorba \
|
|
irssi.desktop
|
|
|
|
## make rpms
|
|
rpm: Makefile
|
|
$(MAKE) dist
|
|
rpm -ta --clean $(PACKAGE)-$(VERSION).tar.gz
|