28 lines
720 B
Makefile
28 lines
720 B
Makefile
SUBDIRS = win32 lib src po data nsis
|
|
|
|
dist_doc_DATA = AUTHORS ChangeLog README COPYING COPYING.README
|
|
|
|
# Remove this line when Automake 1.10 becomes standard
|
|
MKDIR_P=$(mkdir_p)
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
install-data-local:
|
|
$(MKDIR_P) $(DESTDIR)$(icondir)
|
|
$(MKDIR_P) $(DESTDIR)$(applicationdir)
|
|
$(INSTALL_DATA) $(srcdir)/debian/warzone2100.png $(DESTDIR)$(icondir)/warzone2100.png
|
|
$(INSTALL_DATA) $(srcdir)/debian/warzone2100.desktop $(DESTDIR)$(applicationdir)/warzone2100.desktop
|
|
|
|
uninstall-local:
|
|
$(RM) $(DESTDIR)$(icondir)/warzone2100.png
|
|
$(RM) $(DESTDIR)$(applicationdir)/warzone2100.desktop
|
|
|
|
EXTRA_DIST= \
|
|
config.rpath \
|
|
autogen.sh \
|
|
configure.ac \
|
|
m4/ogg.m4 \
|
|
m4/sdl.m4 \
|
|
m4/sdl_net.m4 \
|
|
m4/vorbis.m4
|