home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
octa21fs.zip
/
octave
/
dlfcn
/
makefile
< prev
Wrap
Makefile
|
2000-01-15
|
698b
|
25 lines
# 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