Annotation of q_a/samples/bob/makefile, revision 1.1

1.1     ! root        1: # Nmake macros for building Windows 32-Bit apps
        !             2: 
        !             3: !include <ntwin32.mak>
        !             4: 
        !             5: 
        !             6: # This line allows NMAKE to work as well
        !             7: 
        !             8: all: BOB.exe
        !             9: 
        !            10: # Update the resource if necessary
        !            11: BOB.rbj: BOB.rc BOB.h
        !            12:     rc -r -fo BOB.res BOB.rc
        !            13:     cvtres -$(CPU) BOB.res -o BOB.rbj
        !            14: 
        !            15: # Update the object file if necessary
        !            16: 
        !            17: BOB.obj: BOB.c BOB.h
        !            18:     $(cc) $(cflags) $(cvars) $(cdebug) BOB.c
        !            19: 
        !            20: # Update the executable file if necessary, and if so, add the resource back in.
        !            21: 
        !            22: BOB.exe: BOB.obj BOB.rbj BOB.def
        !            23:     $(link) $(linkdebug) $(guiflags) -out:BOB.exe BOB.obj BOB.rbj $(guilibs) advapi32.lib
        !            24: 
        !            25: 
        !            26: clean:
        !            27:         del *.rbj
        !            28:         del *.res
        !            29:         del *.obj
        !            30:         del *.bak

unix.superglobalmegacorp.com

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