X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=python%2FMakefile;h=93a4fe9ee3befdc470d391306358ac66d7322138;hb=e6a11dca442b363b9de672638d00620298f73087;hp=5a77b1515d81a40d32b2ecef33964708a17a95ca;hpb=e3d49c4785528982b87e22628080e5447713913b;p=librfid diff --git a/python/Makefile b/python/Makefile index 5a77b15..93a4fe9 100644 --- a/python/Makefile +++ b/python/Makefile @@ -1,17 +1,34 @@ +# Makefile for Python bindings +# (C) 2007-2008 by Kushal Das + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License version 2 +# as published by the Free Software Foundation + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + + CC=gcc PYTHON=python PREFIX=/usr PYTHON_VER=2.5 PYTHON_INC=$(PREFIX)/include/python$(PYTHON_VER) PYTHON_LIB=$(PREFIX)/lib/python$(PYTHON_VER)/site-packages/ -LIBRFID_DIR=../src/.libs/librfid.la -LIBOPENPCD_DIR=/usr/local/openpcd/lib +LIBRFID_DIR=../src/.libs SOURCE_MAIN=pyrfid.c SOURCES=$(SOURCE_MAIN) openpcd.c INCLUDES=-I$(PYTHON_INC) -I../include/ -I../utils/ CFLAGS=-O3 -Wall $(INCLUDES) -LDFLAGS=-shared -L$(LIBRFID_DIR) -lrfid -L$(LIBOPENPCD_DIR) -lusb -Wl,--rpath -Wl,/usr/local/lib $(LIBS) +LDFLAGS=-shared -L$(LIBRFID_DIR) -lrfid -lusb -Wl,--rpath -Wl,/usr/local/lib $(LIBS) TARGET=$(SOURCE_MAIN:.c=.so) OBJECTS=$(SOURCES:.c=.o)