Документ взят из кэша поисковой машины. Адрес оригинального документа : http://www.naic.edu/~phil/hardware/vertex/sharemegsvertex/lcu/pcr/devkit/src/CONFSMPL/MAKEFILE
Дата изменения: Wed Oct 13 18:17:00 1993
Дата индексирования: Thu Jan 15 16:04:24 2009
Кодировка:
######################################################################
# Copyright 1991 FTP Software, Inc. All rights reserved.
#
# Makefile:
# set_win.exe : illustrates access to the PCTCP config file.
#
# 23-Jun-92 rcq added sample.exe and removed unix-make specific commands
# 19-Sep-92 rcq renamed sample.c to setwin.c to match docs
# 09-Sep-92 rcq renamed setwin.c to set_win.c to *really* match docs
# 13-Oct-93 arnoff set_win only.
#
##############################################################################

CFLAGS = -nologo -Ox
# for debugging
#CFLAGS = -Gs -Od -W4 -Zd -Zi

LFLAGS = /m /li /noe

# 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 slibce
LLIBS = lpc lnetlib lconfig llibce

all: set_win.exe
large: lset_win.exe

set_win.exe: set_win.so
link /stack:4000 $(LFLAGS) set_win.so,,, $(LIBS);

lset_win.exe: set_win.lo
link /stack:4000 $(LFLAGS) set_win.lo,lset_win,, $(LLIBS);

clean:
del *.?o
del *.map

cleanall: clean
del *.exe