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: clock.exe
-
- clockdat.obj: clockdat.asm
- masm clockdat;
-
- clockdat.bin: clockdat.asm
- link clockdat;
- exe2bin clockdat
- del clockdat.exe
-
- clock.res: clock.rc clock.ico clock.h clockdat.bin clock.dlg
- $(RC) -r clock.rc
-
- clock.obj: clock.c clock.h
- $(HC) -c -Hwin clock.c
-
- clock.exp: clock.obj
- $(HC) -Hwin clock.obj
-
- clock.exe: clock.exp clock.res
- copy $(MWSUP) .
- $(RC) -fe mwsup.exe clock.res
- $(MWBIND) mwsup.exe clock.exp clock.exe
- del mwsup.exe
-