mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
28 lines
595 B
Makefile
Executable File
28 lines
595 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
build-indep: build-indep-stamp
|
|
build-indep-stamp:
|
|
[ -e debian/control ]
|
|
travis/support/script
|
|
touch $@
|
|
|
|
build-arch:
|
|
|
|
build: build-indep
|
|
|
|
clean:
|
|
[ -e debian/control ]
|
|
rm -f build-indep-stamp debian/files
|
|
cd AndorsTrail && rm -fr *.apk .gradle build build.gradle \
|
|
gradle.properties keystore.p12 local.properties src/main
|
|
|
|
binary-indep: build-indep
|
|
[ -e debian/control ]
|
|
cp -a AndorsTrail/*.apk ..
|
|
dpkg-distaddfile $(shell basename AndorsTrail/*.apk) - -
|
|
|
|
binary-arch:
|
|
|
|
binary: binary-indep
|
|
.PHONY: build-indep build-arch build clean binary-indep binary-arch binary
|