home *** CD-ROM | disk | FTP | other *** search
- ################################################################
- #
- # MakeFile for Petzold examples and the MetaWare Windows
- # Application Development Kit.
- #
- # The example program in this directory is Copyright 1990,
- # Charles Petzold. Any source code modifications required
- # to operate under the MetaWare Windows ADK have been
- # conditionalized with the __HIGHC__ macro.
- #
- #
- # Note: This makefile includes vars.make, 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: sysmets1.exe sysmets2.exe sysmets3.exe
-
- sysmets1.obj: sysmets1.c sysmets.h
- $(HC) -c -Hwin sysmets1.c
-
- sysmets1.exp: sysmets1.obj
- $(HC) -Hwin sysmets1
-
- sysmets1.exe: sysmets1.exp
- copy $(MWSUP)
- $(RC) mwsup.exe
- $(MWBIND) mwsup.exe sysmets1.exp
- del mwsup.exe
-
- sysmets2.obj: sysmets2.c sysmets.h
- $(HC) -c -Hwin sysmets2.c
-
- sysmets2.exp: sysmets2.obj
- $(HC) -Hwin sysmets2
-
- sysmets2.exe: sysmets2.exp
- copy $(MWSUP)
- $(RC) mwsup.exe
- $(MWBIND) mwsup.exe sysmets2.exp
- del mwsup.exe
-
- sysmets3.obj: sysmets3.c sysmets.h
- $(HC) -c -Hwin sysmets3.c
-
- sysmets3.exp: sysmets3.obj
- $(HC) -Hwin sysmets3
-
- sysmets3.exe: sysmets3.exp
- copy $(MWSUP)
- $(RC) mwsup.exe
- $(MWBIND) mwsup.exe sysmets3.exp
- del mwsup.exe
-
-