Annotation of mstools/samples/wdbgexts/makefile, revision 1.1

1.1     ! root        1: # Nmake macros for building Windows 32-Bit apps
        !             2: 
        !             3: !include <ntwin32.mak>
        !             4: 
        !             5: PROJ = wdbgexts
        !             6: 
        !             7: all: $(PROJ).dll
        !             8: 
        !             9: # Update the object files if necessary
        !            10: 
        !            11: $(PROJ).obj: $(PROJ).c
        !            12:     $(cc) $(cflags) $(cvarsdll) $(cdebug) $(scall) $*.c
        !            13: 
        !            14: # Update the import library
        !            15: 
        !            16: $(PROJ).lib: $(PROJ).obj $(PROJ).def
        !            17:     $(implib) -machine:$(CPU) \
        !            18:     -def:$*.def \
        !            19:     $*.obj \
        !            20:     -out:$*.lib
        !            21: 
        !            22: # Update the dynamic link library
        !            23: 
        !            24: $(PROJ).dll: $(PROJ).obj $(PROJ).def $(PROJ).lib
        !            25:     $(link) $(linkdebug) \
        !            26:     -base:0x1C000000 \
        !            27:     -dll \
        !            28:     -entry:_DllMainCRTStartup$(DLLENTRY) \
        !            29:     -out:$*.dll \
        !            30:     $*.exp $*.obj $(conlibsdll)

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.