File: rules

package info (click to toggle)
bibcursed 2.0.0-6.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 324 kB
  • sloc: ansic: 5,056; makefile: 9
file content (17 lines) | stat: -rwxr-xr-x 346 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f

#export DH_VERBOSE=1

include /usr/share/dpkg/buildflags.mk
include /usr/share/dpkg/architecture.mk

ifeq ($(origin CC),default)
  CC := $(DEB_HOST_GNU_TYPE)-gcc
endif

%:
	dh $@

override_dh_auto_build-arch:
	# Add here commands to compile the package.
	$(CC) $(CFLAGS) -Wshadow -o bibcursed bibcursed.c -lncurses $(LDFLAGS)