mirror of
https://github.com/Project-OSS-Revival/alien.git
synced 2026-04-24 14:00:17 +00:00
22 lines
490 B
Makefile
Executable File
22 lines
490 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
%:
|
|
dh $@
|
|
|
|
build:
|
|
dh build
|
|
# simple smoke test
|
|
./alien.pl -V
|
|
|
|
binary-indep: build
|
|
dh install --before dh_auto_install
|
|
$(MAKE) pure_install INSTALLDIRS=vendor \
|
|
PREFIX=$(shell pwd)/debian/alien/$(shell perl -MConfig -e 'print $$Config{prefix}') \
|
|
VARPREFIX=$(shell pwd)/debian/alien
|
|
dh install --after dh_auto_install
|
|
|
|
# Not intended for use by anyone except the author.
|
|
announcedir:
|
|
@echo ${HOME}/src/joeywiki/code/alien/news
|
|
|
|
binary: binary-indep binary-arch
|