File: rules

package info (click to toggle)
apng2gif 1.8-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,100 kB
  • sloc: ansic: 31,551; cpp: 1,237; sh: 251; makefile: 26
file content (26 lines) | stat: -rwxr-xr-x 488 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/make -f

PACKAGE = apng2gif
BIN	= $(PACKAGE)
CC	:= gcc

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
CFLAGS	+= -Wall -pedantic
LDFLAGS += -Wl,--as-needed
LIBS     = -lstdc++ -lm -lpng -lz

include debian/pod2man.mk

man:
	$(MAKE) -C debian -f pod2man.mk PACKAGE=$(PACKAGE) makeman

override_dh_auto_build: man
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) $(PACKAGE).cpp -o $(BIN) $(LIBS)

override_dh_installchangelogs:
	dh_installchangelogs readme.txt

%:
	dh $@

# End of file