diff options
Diffstat (limited to 'python/Makefile')
-rw-r--r-- | python/Makefile | 23 |
1 files changed, 20 insertions, 3 deletions
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 <kushal@openpcd.org> + +# 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) |