Skip to content

Commit

Permalink
D3D specific tdi library etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Schacter committed Apr 22, 1999
1 parent 51fa64a commit 80e5e73
Show file tree
Hide file tree
Showing 3 changed files with 1,010 additions and 0 deletions.
28 changes: 28 additions & 0 deletions d3dshr/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
include $(MAKE_OPTIONS)

D3DLIB = /c/osf/lib

OBJECTS = \
mdsptdata.o

mdslib : ../shlib ../shlib/libMdsD3D.$(SHARE_TYPE)

../shlib :
mkdir ../shlib

mdsptdata.o : mdsptdata.f
f77 -c -g -I. -o $@ mdsptdata.f

../shlib/libMdsD3D.$(SHARE_TYPE) : $(OBJECTS)
$(LD) -o $@ $(LD_SHARED_LIB_OPTIONS) $(OBJECTS) -L$(D3DLIB) -ld3 -lc -lfor

clean :
- rm *.o
- rm ../shlib/libMdsD3D.$(SHARE_TYPE)
- rm .depend

.depend :
find *.c -exec $(MAKE_DEPEND)

include $(DEPEND)

Loading

0 comments on commit 80e5e73

Please sign in to comment.