# Makefile for dlfcn for OS/2
# (c) 1997, Klaus Gebhardt

# ****************************************************************************
# This was written for the OS/2 port of Octave, but it is not part of Octave!
# You can use the code UNMODIFIED. If you think changes are necessary,
# please send me a mail (gebhardt@crunch.ikp.physik.th-darmstadt.de).
# Thanks,
#   Klaus Gebhardt
# ****************************************************************************

CFLAGS = -Wall -O2 -m486

INCLUDES = dlfcn.h
SOURCES  = dlfcn.c
OBJECTS  = $(SOURCES:.c=.o)
LIBRARY  = dlfcn.a dlfcn.lib

include ../makerules

dlfcn.a: $(OBJECTS)
dlfcn.lib: dlfcn.a
dlfcn.o: dlfcn.c dlfcn.h

