diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-08-09 16:24:17 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-08-09 16:24:17 +0000 |
commit | c3eb8c4d0f34c11249a820e74123e750dcceddc1 (patch) | |
tree | a1cf837605d00d2bf4681fa389b997c00c3b9ba0 /cpp/src | |
parent | Fix typo (diff) | |
download | ice-c3eb8c4d0f34c11249a820e74123e750dcceddc1.tar.bz2 ice-c3eb8c4d0f34c11249a820e74123e750dcceddc1.tar.xz ice-c3eb8c4d0f34c11249a820e74123e750dcceddc1.zip |
BCB port
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/icecpp/Makefile.mak | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/cpp/src/icecpp/Makefile.mak b/cpp/src/icecpp/Makefile.mak new file mode 100644 index 00000000000..7cf6424093c --- /dev/null +++ b/cpp/src/icecpp/Makefile.mak @@ -0,0 +1,35 @@ +# ********************************************************************** +# +# Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved. +# +# This copy of Ice is licensed to you under the terms described in the +# ICE_LICENSE file included in this distribution. +# +# ********************************************************************** + +top_srcdir = ..\.. + +NAME = $(top_srcdir)\bin\icecpp.exe + +TARGETS = $(NAME) + +OBJS = cccp.o \ + cexp.o \ + prefix.o + +!include $(top_srcdir)/config/Make.rules.mak + +CFLAGS = $(CFLAGS) -I. -DPREFIX=\"\" -DUSE_PROTOTYPES + +cexp.c: cexp.y + bison -o cexp.c cexp.y + +$(NAME): $(OBJS) + del /q $@ + $(LINK) $(LD_EXEFLAGS) $(OBJS), $@,, + +install:: all + copy $(NAME) $(install_bindir) + +clean:: + del /q cexp.c |