home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-31 | 634 b | 29 lines |
- # Nmake macros for building Windows 32-Bit apps
-
- !include <ntwin32.mak>
-
- PROJ = wdbgexts
-
- all: $(PROJ).dll
-
- # Update the object files if necessary
-
- $(PROJ).obj: $(PROJ).c
- $(cc) $(cflags) $(cvarsdll) $(cdebug) $(scall) -I. -I..\..\sdktools\image\include $*.c
-
- # Update the import library
-
- $(PROJ).lib: $(PROJ).obj $(PROJ).def
- $(implib) -machine:$(CPU) \
- -def:$*.def \
- $*.obj \
- -out:$*.lib
-
- # Update the dynamic link library
-
- $(PROJ).dll: $(PROJ).obj $(PROJ).def $(PROJ).lib
- $(link) $(linkdebug) $(dlllflags) \
- -base:0x1C000000 \
- -out:$*.dll \
- $*.exp $*.obj $(conlibsdll)
-