#
# Makefile for saml1module
#
TOPDIR := ..
include $(TOPDIR)/make.common

CFILES	= saml1.c
HFILES	=
OFILES	= $(CFILES:.c=.o)
PFILES	= $(CFILES:.c=.op)

DEBUG =
WARN = -Wall
CPPFLAGS += -I/usr/local/include/python1.4 -I/usr/local/lib/python1.4/config
CFLAGS += -fPIC

all: saml1module.so
profil: samuel_p

saml1module.so: saml1.o
	$(CC) -L../lib -shared -o $@ $< -lsaml

veryclean: clean
	rm -f *.s *.orig *.pyc saml1module.so
