home *** CD-ROM | disk | FTP | other *** search
- #
- # MAKEXPLS This make file can be used to construct executable
- # files from all the Turbo C TOOLS examples. It is
- # assumed that all Turbo C and Turbo C TOOLS header
- # files are in the directory "\turboc\include" and libraries
- # are in the directory "\turboc\lib". By default small memory
- # model executables are built. Change the values of the
- # MMODEL, INC and LIB macros if the defaults are not
- # appropriate.
- #
- # This make file is invoked by:
- #
- # make -fmakexpls
- #
- # Version 6.00 (C)Copyright Blaise Computing Inc. 1987, 1989
- #
-
- .c.exe:
- tcc -m$(MMODEL) -O -w -I$(INC) -L$(LIB) $*.c \
- $(LIB)\tct_t2$(MMODEL).lib
-
- MMODEL=s
- INC=\turboc\include
- LIB=\turboc\lib
-
- examples: cmkey.exe criterr.exe ctlbrk.exe demoedt.exe \
- entryedt.exe isclock.exe ivclock.exe keyctrl.exe \
- menu.exe mnexampl.exe mousehan.exe noansi.exe \
- normfile.exe pullmenu.exe showhelp.exe tcwin.exe \
- winkey.exe wnexampl.exe
-
- # Dependencies for example programs
-
- cmkey.exe: cmkey.c
- criterr.exe: criterr.c
- ctlbrk.exe: ctlbrk.c
- demoedt.exe: demoedt.c
- entryedt.exe: entryedt.c
- isclock.exe: isclock.c
- ivclock.exe: ivclock.c
- keyctrl.exe: keyctrl.c
- menu.exe: menu.c
- mnexampl.exe: mnexampl.c
- mousehan.exe: mousehan.c
- noansi.exe: noansi.c
- normfile.exe: normfile.c
- pullmenu.exe: pullmenu.c
- showhelp.exe: showhelp.c
- winkey.exe: winkey.c
- wnexampl.exe: wnexampl.c
-
- tcwin.exe: tcwin.c
- maktcwin $(MMODEL)