Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/lcu/pcr/devkit/src/CONFSMPL/MAKEFILE.BCC
Дата изменения: Wed Oct 13 18:17:04 1993
Дата индексирования: Thu Jan 15 16:26:49 2009
Кодировка:

Поисковые слова: ultraviolet
##############################################################################
# Copyright 1991 - 1993 FTP Software, Inc. All rights reserved.
#
# Makefile for set_win, Borland C++ version
#
# Edit history:
# 18-Jun-92 paul munged for Borland C++
# 03-Aug-92 paul added install target
# 24-Sep-92 rcq added set_win and large model versions
# 04-Oct-92 rcq changed object extensions to differentiate
# 13-Oct-93 arnoff set_win only.
##############################################################################

DESTDIR=..\..\BIN

CFLAGS = -wOG
LFLAGS = /m

# By default, these programs are small model. As an example, it is useful
# to show procedures for building both small and large model. Other memory
# models are left as an exercise for the reader (see BUILTINS.MAK if you're
# using a UNIX-compatible make -OR- TOOLS.INI if you are using MSC NMAKE
# for more information on the way we do it).
LIBS = spc snetlib sconfig cs
LLIBS = lpc lnetlib lconfig cl

all: set_win.exe
large: lset_win.exe

install: all
copy *.exe $(DESTDIR)


#Small Model version
set_win.exe: set_win.bso
tlink $(LFLAGS) @&&!
c0s set_win.bso
set_win.exe
set_win.map
$(LIBS)
!

#Large Model version
lset_win.exe: set_win.blo
tlink $(LFLAGS) @&&!
c0l set_win.blo
lset_win.exe
lset_win.map
$(LLIBS)
!

clean:
del *.b?o
del *.obj
del *.map

cleanall: clean
del *.exe