11 lines
298 B
Makefile
11 lines
298 B
Makefile
#!/usr/bin/make -f
|
|
|
|
.PHONY: pkg-deb deb-clean
|
|
|
|
pkg-deb:
|
|
dpkg-buildpackage -us -uc
|
|
|
|
clean:
|
|
rm -f ../bitcron_*.deb ../bitcron_*.changes ../bitcron_*.tar.xz ../bitcron_*.dsc ../bitcron_*.buildinfo
|
|
rm -rf debian/.debhelper debian/files debian/bitcron debian/*.substvars debian/debhelper-build-stamp
|