home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-07-05 | 695 b | 27 lines |
- #makefile for atree.dll for Windows 3.0
- #Should be compiled under the small memory model
- #When compiling as .dll, do NOT assume ds=ss
-
- CPATH = f:\c
- CFLAGS = -ms! -O -G -H -WD
- OBJECTS = atree.obj
-
- atree.dll : $(OBJECTS) atree.def atree.res
-
- TLINK /v /c /Twd $(CPATH)\lib\C0DS atree.obj,\
- atree,atree,\
- $(CPATH)\lib\IMPORT $(CPATH)\lib\CWINC $(CPATH)\lib\cs,\
- atree.def
-
- # TLINK @atree.rsp
- rc atree.dll
- copy atree.dll c:\windows
-
- atree.res : atree.rc atree.ico
- rc -r -i$(CPATH)\include\ atree.rc
-
- atree.obj : atree.c atree.h
-
- .c.obj:
- BCC $(CFLAGS) -c $<
-