ICU-3258 CygWin/MSVC changes

X-SVN-Rev: 13151
This commit is contained in:
George Rhoten 2003-09-21 17:27:09 +00:00
parent a81fa53a61
commit 56443f537e
2 changed files with 9 additions and 13 deletions

View File

@ -1,5 +1,5 @@
## Makefile.in for ICU - samples/cal
## Copyright (c) 1999-2001, International Business Machines Corporation and
## Copyright (c) 1999-2003, International Business Machines Corporation and
## others. All Rights Reserved.
## Source directory information
@ -23,7 +23,7 @@ TARGET = icucal
LINK = $(LINK.cc)
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n
LIBS = $(LIBICUI18N) $(LIBICUUC) @LIBS@ @LIB_M@
LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
OBJECTS = uprint.o cal.o
@ -65,7 +65,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
$(TARGET) : $(OBJECTS)
$(LINK) -o $@ $^ $(LIBS)
$(LINK) $(OUTOPT)$@ $^ $(LIBS)
ifeq (,$(MAKECMDGOALS))
-include $(DEPS)

View File

@ -1,18 +1,16 @@
## Makefile.in for ICU - samples/date
## Copyright (c) 1999-2001, International Business Machines Corporation and
## Copyright (c) 1999-2003, International Business Machines Corporation and
## others. All Rights Reserved.
## Source directory information
srcdir = @srcdir@
top_srcdir = @top_srcdir@
srcdir=@srcdir@
top_srcdir=@top_srcdir@
top_builddir = ../..
include $(top_builddir)/icudefs.mk
## Platform-specific setup
include @platform_make_fragment@
## Build directory information
subdir = samples/date
@ -22,12 +20,10 @@ CLEANFILES = *~ $(DEPS)
## Target information
TARGET = icudate
ENABLE_STATIC = @ENABLE_STATIC@
LINK = $(LINK.cc)
CPPFLAGS += -I$(top_builddir)/common -I$(top_srcdir)/common -I$(top_srcdir)/i18n
LIBS = $(LIBICUI18N) $(LIBICUUC) @LIBS@ @LIB_M@
LIBS = $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
OBJECTS = uprint.o date.o
@ -69,7 +65,7 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
&& CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
$(TARGET) : $(OBJECTS)
$(LINK) -o $@ $^ $(LIBS)
$(LINK) $(OUTOPT)$@ $^ $(LIBS)
ifeq (,$(MAKECMDGOALS))
-include $(DEPS)