1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2025-04-21 12:27:27 +03:00

The ./configure will now accept the --enable-platform switch.

It takes as its parameter the name of the targeted platform.
Currently, those are nanonote, dingux, pandora, gp2x and pc.
The makefiles will install the data accordingly to the platform specs
(e.g. install the 800x480 skins for the pandora platform).
This commit is contained in:
Ayla
2011-06-01 01:07:00 +02:00
parent 34af938ce1
commit b646c33080
3 changed files with 55 additions and 2 deletions

9
data/Makefile.am Normal file
View File

@@ -0,0 +1,9 @@
#pkgdata_DATA = platform/@PLATFORM@ translations skins/@SCREEN_RES@
install-data-local:
test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
$(MKDIR_P) "$(DESTDIR)$(pkgdatadir)/skins"
cp -r platform/@PLATFORM@/* "$(DESTDIR)$(pkgdatadir)"
cp -r translations "$(DESTDIR)$(pkgdatadir)"
cp -r skins/@SCREEN_RES@/* "$(DESTDIR)$(pkgdatadir)/skins"