home *** CD-ROM | disk | FTP | other *** search
- ################################################################
- #
- # MakeFile for Microsoft SDK examples and the MetaWare
- # Windows Application Development Kit.
- #
- # The example program in this directory is Copyright 1990,
- # Microsoft Corporation, and has been modified by MetaWare
- # to operate under the MetaWare Windows ADK.
- #
- #
- # Note: This makefile includes vars.mak, which normally
- # resides two directory levels up (..\..). If you
- # change the directory structure, or use a make
- # program that uses a different style include
- # directive, you will have to modify the following
- # include statement.
- #
- ################################################################
-
- !include ../../vars.mak
-
- all: memory.exe
-
- memory.res: memory.rc memory.h
- $(RC) -r memory.rc
-
- memory1.obj: memory1.c memory.h
- $(HC) -c -Hwin memory1.c
-
- memory2.obj: memory2.c memory.h
- $(HC) -c -Hwin memory2.c
-
- memory3.obj: memory3.c memory.h
- $(HC) -c -Hwin memory3.c
-
- memory4.obj: memory4.c memory.h
- $(HC) -c -Hwin memory4.c
-
- memory.exp: memory1.obj memory2.obj memory3.obj memory4.obj
- $(HC) -Hwin memory1 memory2 memory3 memory4 -o memory
-
- memory.exe: memory.exp memory.res
- copy $(MWSUP) .
- $(RC) -fe mwsup.exe memory.res
- $(MWBIND) mwsup.exe memory.exp memory.exe
- del mwsup.exe
-