home *** CD-ROM | disk | FTP | other *** search
- # Listing 4: Makefile for demo.exe
- # Copyright (C) 1991 by Nicholas Wilt. All rights reserved.
-
- # Assumes \tc\lib for library directory of TC++; change LIB
- # assignment below to reflect a different directory structure.
-
- OBJS=heap.obj demo.obj
- LIB=\tc\lib
-
- demo.exe: $(OBJS)
- tlink /v/map/ST:10240 $(LIB)\c0l heap demo, \
- demo.exe,, \
- $(LIB)\emu $(LIB)\cl $(LIB)\mathl
-
- heap.obj: heap.h
-
- .cpp.obj:
- tcc -c -ml -v -w-pia $<