#!/usr/bin/make -f

# Set CFLAGS from DEB_CFLAGS if defined, otherwise let xvidcore's build system
# set CFLAGS to use.
DEFAULT_CFLAGS = -Wall -O3 -fstrength-reduce -finline-functions -ffast-math \
                 -fomit-frame-pointer
CFLAGS = $(or $(DEB_CFLAGS),$(DEFAULT_CFLAGS))

%:
	dh $@ --sourcedirectory=build/generic \
		--parallel
