#
# file:	~/ptcl/makefile
#
# ------------------------------------------------------------
# | Copyright (c) 1997 by Torsten Rottmann, Bad Salzdetfurth |
# ------------------------------------------------------------
#
# TRott: Sat Oct 11 18:54:00 CEST 1997
#
# $Id: makefile,v 1.1 1997/10/16 18:12:21 trott Exp trott $

CC=gcc
CFLAGS=-ansi -Wall -g -fPIC -c

ptcl.so:	ptcl.o
	gcc -shared -o $@ $? -lgdbm

ptcl.o:	ptcl.c
	$(CC) $(CFLAGS) $?
	

tar:
	tar cvzf ptcl.tar.gz README makefile ptcl.c
