home *** CD-ROM | disk | FTP | other *** search
- #----------------------------------------------------------#
- # DIALOG2.MAK #
- # ohne(!) Codeview-Informationen uebersetzt #
- #----------------------------------------------------------#
-
- COMP_OPT=-c -Asnu -G2s -W4
- LINK_OPT=/A:16 /NOD /M
-
- # für alte und neue Make-Version
- all: dialog2.exe
-
- dialog2.obj: dialog2.c dialog2.h dialog2.mak
- cl $(COMP_OPT) dialog2.c
-
- dialog2.res: dialog2.rc dialog2.h dialog2.mak
- rc -r dialog2.rc
-
- dialog2.exe: dialog2.obj dialog2.def dialog2.mak
- link $(LINK_OPT) dialog2,,,os2+slibce,dialog2.def
- rc dialog2.res dialog2.exe
-
- dialog2.exe: dialog2.res dialog2.mak
- rc dialog2.res dialog2.exe
-
- #----------------------------------------------------------#
- # Ende von DIALOG2.MAK #