home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-05-03 | 1.2 KB | 57 lines |
- #
- # MAKEFILE
- # IDescription Interface DLL Chapter 9
- #
- # Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
- #
- # Kraig Brockschmidt, Microsoft
- # Internet : kraigb@microsoft.com
- # Compuserve: >INTERNET:kraigb@microsoft.com
- #
-
- #Add '#' to the next line for 'noisy' operation
- !CMDSWITCHES +s
-
- !ifdef WIN16
- !ERROR This sample only compiles and runs under Win32
- !endif
-
- TARGET = idescrip
- OUTFILE = idescrip.dll
- DLL = 1
- NODOC = 1
- NOUILIB = 1
- NOOCLIB = 1
- NOPRECOMP = 1
- NOCLASSLIB = 1
-
- INCLS =
-
- OBJS1 = idescrip_i.obj idescrip_p.obj
- OBJS2 = dlldata.obj libmain.obj
- OBJS3 = ""
- OBJS4 = ""
- OBJS5 = ""
- OBJS6 = ""
- OBJS = $(OBJS1) $(OBJS2)
-
- RCFILES = idescrip.rc
-
- !include "..\\..\\inole-a.mak"
- LIBS = rpcrt4.lib
- !include "..\\..\\inole-b.mak"
-
-
- #Run MIDL.EXE to produce the source code
- idescrip.h idescrip_p.c idescrip_i.c dlldata.c: idescrip.idl
- midl /ms_ext /app_config /c_ext idescrip.idl
-
-
- ##### Dependencies #####
- idescrip_i.obj : idescrip_i.c
- idescrip_p.obj : idescrip_p.c idescrip.h
- dlldata.obj : dlldata.c
- libmain.obj : libmain.cpp
-
- $(TARGET).res : $(TARGET).rc $(RCFILES)
-