home *** CD-ROM | disk | FTP | other *** search
- # Windows EditSubclasser App
- # Makefile
- # Copyright (c) 1991 Microsoft Corporation. All rights reserved.
-
- #Remove '#' from next line for "silent" operation
- !CMDSWITCHES +s
-
- #Compiler and assembler flags
- CFLAGS=-c -FPa -Gsw -W2 -AS -Oas -Zp
- AFLAGS = -MX -Z -L
-
- #Standard definitions.
- DEFS=
-
-
- #Files on which every C file depends. Add others as appropriate
- INCLS=mleenter.h
-
- .SUFFIXES: .h .c .asm .obj .exe .cxx .res .rc .bas
-
- goal: mleenter.exe
-
-
- OBJS =mleenter.obj
- RCFILES=mleenter.dlg mleenter.ico
-
- #####
-
- .c.obj:
- echo ++++++++++
- echo Compiling $*.c
- cl $(CFLAGS) $(DEFS) $*.c
-
-
- .asm.obj:
- echo +++++++++
- echo ASSEMBLING $*.asm
- masm $(AFLAGS) $(DEFS) $*.asm
-
-
- .rc.res:
- echo +++++++++
- echo Compiling Resources
- rc -r $*.rc
-
-
- mleenter.exe : $(OBJS) mleenter.res
- link @mleenter.lnk
- rc mleenter.res
-
-
-
-
- ##### Dependencies #####
-
- mleenter.obj : mleenter.c $(INCLS)
- mleenter.res : mleenter.rc $(INCLS) $(RCFILES)
-