#!/usr/bin/make -f
# [debian/rules] for cups-pdf
#
# COPYRIGHT © 2003-2011 Martin-Éric Racine <martin-eric.racine@iki.fi>
#
# LICENSE
# This package is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License or (at
# your option) any later version.
#
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/langcore.mk
CFLAGS+=$(shell getconf LFS_CFLAGS)
LDFLAGS+=$(shell getconf LFS_LDFLAGS)

clean:: 
	rm -f src/*.o src/cups-pdf

build-arch:
	$(CC) $(CFLAGS) $(LDFLAGS) src/cups-pdf.c -o src/cups-pdf

#EOF
