1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
OBJS = win32.obj bitmaps.obj bus.obj compat.obj generate_ids.obj iohandler.obj random.obj sd_listen.obj sdr_help.obj sip.obj sip_common.obj sip_register.obj tkUnixInit.obj ui_fns.obj ui_init.obj www_fns.obj sanitised.obj tcl_libs.obj tcl_generic.obj tcl_www.obj tcl_new.obj tcl_start_tools.obj tcl_parsed_plugins.obj tcl_plugins.obj tcl_sip.obj tcl_sdp.obj tcl_sdr.obj tcl_cache.obj
#
# Copyright (c) 1991-1993 Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by the Computer Systems
# Engineering Group at Lawrence Berkeley Laboratory.
# 4. Neither the name of the University nor of the Laboratory may be used
# to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# @(#) $Header: makefile.vc,v 1.4 96/06/12 05:09:56 van Exp $ (LBL)
#
ZIP = c:\progra~1\winzip\winzip32
# Uncomment this line to compile an optimized (with no debug symbols)
# version of the program.
#NODEBUG=1
APPVER=4.0
TOOLS32 = c:\msdev
cc32 = $(TOOLS32)\bin\cl -I$(TOOLS32)\include
rc32 = $(TOOLS32)\bin\rc
link32 = $(TOOLS32)\bin\link
!include <ntwin32.mak>
ALL = sdr
all: $(ALL)
.cc.obj:
$(cc32) $(cdebug) $(cflags) $(cvars) $(CFLAGS) -o $@ -FR$*.sbr -Tp $<
.c.obj:
$(cc32) $(cdebug) $(cflags) $(cvars) $(CFLAGS) -o $@ -FR$*.sbr $<
BSC32= bscmake
BSC32_FLAGS=/nologo /n
INCLUDE_TK = -I../tk4.2/win -I../tk4.2/generic
INCLUDE_TCL = -I../tcl7.6/win -I../tcl7.6/generic
INCLUDE_X11 = -I../tk4.2/xlib
LIB_TK = ../tk4.2/win/tk42l.lib
LIB_TCL = ../tcl7.6/win/tcl76l.lib
LIBS = $(LIB_TK) $(LIB_TCL)
INCLUDES = $(INCLUDE_TK) $(INCLUDE_TCL) $(INCLUDE_X11) $(MD_INC)
BFLAGS = -D_Windows -DVC_EXTRALEAN $(INCLUDES)
CFLAGS = $(BFLAGS) -DWIN32 -DCANT_MCAST_BIND -DNORANDPROTO
sdr: sdr.exe
sdr.exe: $(OBJS)
$(link32) $(linkdebug) /warn:3 $(guilflags) $(OBJS) $(LIBS)\
$(guilibs) wsock32.lib winmm.lib /out:$@
sdr.bsc: $(SBR)
$(BSC32) @<<
$(BSC32_FLAGS) /o$@ $(SBR)
<<
clean:
-del *.obj
-del *.sbr
-del tcl2c.exe
|