
# Makefile for ForkLight library by C.W. Kessler 07/98
# dependent on target system libraries and target compiler

CC=gcc
P4_HOME_DIR = /home/psi/kessler/p4
INCLUDEDIR = $(P4_HOME_DIR)/include
LIBDIR = $(P4_HOME_DIR)/lib
INCL=$(FLDIR)/include 
CFLAGS = -c -g -I$(INCLUDEDIR) -DP4
#CFLAGS = -c -g -I$(INCLUDEDIR) -DP4 -DSBPRAM
OBJS=libfl.o #mythread.o

all:    $(OBJS)

libfl.o:	libfl.c libfl.h #mythread.h
	$(CC) $(CFLAGS) libfl.c

#mythread.o:	mythread.c mythread.h
#	$(CC) $(CFLAGS) mythread.c

clean:
	rm -f $(OBJS)

