Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign up| #!/usr/bin/make -f | |
| # Uncomment this to turn on verbose mode. | |
| #export DH_VERBOSE=1 | |
| ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) | |
| CFLAGS_MAINT += -O0 | |
| else | |
| CFLAGS_MAINT += -O2 | |
| endif | |
| CFLAGS_MAINT += -Wall -g | |
| export DEB_CFLAGS_MAINT_APPEND = $(CFLAGS_MAINT) | |
| override_dh_autoinstall: | |
| dh_autoinstall | |
| install -m 440 lifeguard.uids $(CURDIR)/debian/tmp/etc/dsme/ | |
| override_dh_auto_test: | |
| @echo "dh_auto_test disabled" | |
| %: | |
| dh $@ |