Revision 13c43f86134533740179acf690749776574ef75f authored by Nick Alexander on 27 January 2016, 20:25:04 UTC, committed by Nick Alexander on 27 January 2016, 20:25:04 UTC
This simply packs the assets/ subdirectory of the distribution
directory into the assets/ directory of the Android APK using existing
mechanisms.  It also removes the older method of manually pushing
files into dist/bin/distribution, from where they would be packaged
into the APK under distribution/.

--HG--
extra : commitid : DPwUaLE2AVR
extra : source : e228040a044b7ff7363a178da2cb0b8b42724048
extra : intermediate-source : 489b15a7dce6b8d26dddc26387ea0d02d057c298
1 parent bb26db8
Raw File
GNUmakefile
# This Makefile is used as a shim to aid people with muscle memory
# so that they can type "make".
#
# This file and all of its targets should not be used by anything important.

all: build

build:
	./mach build

clean:
	./mach clobber

.PHONY: all build clean
back to top