-# Copyright (c) 2000 IBM, Inc. and others
-# conversion sample code $Revision: 1.1.1.1 $
+# Copyright (C) 2016 and later: Unicode, Inc. and others.
+# License & terms of use: http://www.unicode.org/copyright.html#License
+#
+# Copyright (c) 2000-2005 IBM, Inc. and others
+# conversion sample code
# Usage:
# - configure, build, install ICU
# - ensure that 'icu-config' is in the PATH (PREFIX/bin/icu-config)
ICU_PATH=$(ICU_DEFAULT_PATH)
endif
-GENRBOPT = -s. -d. --package-name $(PKG)
+GENRBOPT = -s. -d.
# Name of your target
TARGET=uresb
PKG=$(TARGET)
RES_SRC=root.txt en.txt sr.txt
-RESOURCES=$(RES_SRC:%.txt=$(PKG)_%.res)
+RESOURCES=$(RES_SRC:%.txt=%.res)
# All object files (C or C++)
OBJECTS=uresb.o
@false
CPPFLAGS += -I$(ICU_PATH)/source/tools/toolutil
-LDFLAGS += -L$(ICU_PATH)/source/tools/toolutil $(shell icu-config --ldflags-toolutil --ldflags-ustdio)
+LDFLAGS += -L$(ICU_PATH)/source/tools/toolutil $(shell icu-config --ldflags-toolutil --ldflags-icuio)
.PHONY: all clean distclean check report
distclean clean:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
- -$(RMV) $(OBJECTS) $(TARGET)
+ -$(RMV) $(OBJECTS) $(TARGET) $(RESOURCES)
## resources
-$(PKG)_%.res: %.txt
+%.res: %.txt
@echo "generating $@"
$(GENRB) $(GENRBOPT) $^
## Special for a special codepage
-$(PKG)_sr.res : sr.txt
+sr.res : sr.txt
@echo "generating $@"
$(GENRB) $(GENRBOPT) -e cp1251 $?
# Can change this to LINK.c if it is a C only program
# Can add more libraries here.
$(TARGET): $(OBJECTS)
- $(CC) -o $@ $^ $(LDFLAGS)
+ $(CC) -o $(TARGET) $(LDFLAGS)
# Make check: simply runs the sample, logged to a file
check: $(TARGET) $(RESOURCES)
-
-
-
-
-
-
-
-
-
-
-