mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-05 12:40:15 +02:00
b646c33080
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).
10 lines
360 B
Makefile
10 lines
360 B
Makefile
|
|
#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"
|