Files
itgmania212121/Makefile.am
T

40 lines
1.5 KiB
Makefile
Raw Normal View History

2011-03-17 01:47:30 -04:00
## Need 1.7 for subdir support. (Well, 1.4 doesn't work, I don't know if anything between does.)
AUTOMAKE_OPTIONS = 1.7 foreign
SUBDIRS = src
ACLOCAL_AMFLAGS = -I autoconf/m4
## Black magic (read: sed) for getting the product ID as defined in code, not by the autotools.
## Quotes are making vim's highlighting of this even worse, so just escape everything,
## including the escapes. Make it lowercase to match ArchHooks::MountInitialFileSystems().
productID := $(shell sed -nr /define\\s+PRODUCT_ID_BARE/\{s/.*define\\s+PRODUCT_ID_BARE\\s+\(.+\)/\\1/\;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/\;p\;q\} $(srcdir)/src/ProductInfo.h)
installFiles = src/stepmania
if HAVE_GTK
installFiles += src/GtkModule.so
endif
2011-10-10 00:21:53 +02:00
installData = $(srcdir)/Announcers $(srcdir)/BGAnimations $(srcdir)/Themes $(srcdir)/Characters $(srcdir)/Scripts $(srcdir)/Courses $(srcdir)/BackgroundEffects $(srcdir)/Data $(srcdir)/BackgroundTransitions $(srcdir)/Docs $(srcdir)/NoteSkins
2011-03-17 01:47:30 -04:00
.PHONY: SMData
SMData:
$(srcdir)/Utils/CreatePackage.pl $(srcdir) .
dist-hook: SMData
2012-01-12 03:26:08 +02:00
mkdir -p "$(distdir)/Packages"
mv GameData.smzip "$(distdir)/Packages"
cp -r "$(srcdir)/Docs" "$(distdir)"
2011-10-10 00:21:53 +02:00
cp -r -t "$(distdir)" $(installFiles)
install-exec-hook:
mkdir -p "$(prefix)/$(productID)"
$(INSTALL) $(installFiles) "$(prefix)/$(productID)"
2011-03-17 01:47:30 -04:00
2011-10-10 00:21:53 +02:00
install-data-local:
cp -r -t "$(prefix)/$(productID)" $(installData)
mkdir -p "$(prefix)/$(productID)/Songs"
2011-03-17 01:47:30 -04:00
uninstall-hook:
2011-10-10 00:21:53 +02:00
rm -f "$(prefix)/$(productID)/stepmania"
rm -f "$(prefix)/$(productID)/GtkModule.so"
# todo: properly remove data