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: bitmap.exe bmcall16.exe
-
- bitmap.res: bitmap.rc bitmap.h dog.bmp cat.bmp
- $(RC) -r bitmap.rc
-
- bmcall16.obj: bitmap.c bitmap.h
- $(HC) -c -Hwin -DCALL16 bitmap.c -o bmcall16.obj
-
- bitmap.obj: bitmap.c bitmap.h
- $(HC) -c -Hwin bitmap.c
-
- select.obj: select.c select.h
- $(HC) -c -Hwin select.c
-
- bitmap.exp: bitmap.obj select.obj
- $(HC) -Hwin bitmap select
-
- bmcall16.exp: bmcall16.obj
- $(HC) -Hwin bmcall16
-
- bitmap.exe: bitmap.res bitmap.exp
- copy $(MWSUP) .
- $(RC) -fe mwsup.exe bitmap.res
- $(MWBIND) mwsup.exe bitmap.exp bitmap.exe
- del mwsup.exe
-
- bmcall16.exe: bitmap.res bmcall16.exp
- copy $(MWSUP) .
- $(RC) -fe mwsup.exe bitmap.res
- $(MWBIND) mwsup.exe bmcall16.exp bmcall16.exe
- del mwsup.exe
-