Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
libicu-devel /
samples /
Delete
Unzip
Name
Size
Permission
Date
Action
all
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
break
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
cal
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
case
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
citer
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
coll
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
csdet
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
date
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
datecal
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
datefmt
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
dtitvfmtsample
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
dtptngsample
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
layout
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
legacy
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
msgfmt
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
numfmt
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
plurfmtsample
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
props
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
strsrch
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
translit
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
uciter8
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
ucnv
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
udata
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
ufortune
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
ugrep
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
uresb
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
ustring
[ DIR ]
drwxr-xr-x
2026-09-04 10:42
Makefile
2.98
KB
-rw-r--r--
2025-07-29 16:16
Makefile.in
2.99
KB
-rw-r--r--
2020-04-22 20:04
defs.mk
1.16
KB
-rw-r--r--
2020-04-22 20:04
readme.txt
2.78
KB
-rw-r--r--
2020-04-22 20:04
rules.mk
1.27
KB
-rw-r--r--
2020-04-22 20:04
Save
Rename
# Copyright (C) 2016 and later: Unicode, Inc. and others. # License & terms of use: http://www.unicode.org/copyright.html#License # # Copyright (c) 2002-2012 IBM, Inc. and others # sample code rules for a single-target simple sample # list of targets that aren't actually created .PHONY: all clean distclean check report all: $(ALL_SUBDIR) $(RESTARGET) $(TARGET) $(TARGET): $(OBJECTS) $(LINK.cc) $(LOADLIBES) $(LDLIBS) -o $@ $(XTRALIBS) -licui18n -licuuc $(RESTARGET): $(RESFILES) $(PKGDATA) --name $(RESNAME) --mode $(RESMODE) $(PKGDATAOPTS) $(RESLIST) res-install: $(RESTARGET) $(PKGDATA) --name $(RESNAME) --mode $(RESMODE) $(PKGDATAOPTS) $(RESLIST) --install $(shell icu-config --libdir) # clean out files distclean clean: $(CLEAN_SUBDIR) -test -z "$(CLEANFILES)" || rm -rf $(CLEANFILES) -rm -rf $(OBJECTS) $(TARGET) $(RESTARGET) $(RESFILES) # Make check: simply runs the sample, logged to a file check: $(ALL_SUBDIR) $(RESTARGET) $(TARGET) $(INVOKE) $(CHECK_VARS) ./$(TARGET) $(CHECK_ARGS) | tee $(TARGET).out ## resources %.res: %.txt @echo "generating $@" $(GENRB) $(GENRBOPT) $^ $(RESNAME)/%.res: %.txt @echo "generating $@" $(GENRB) $(GENRBOPT) $^ ## Some platforms don't have .cpp as a default suffix, so add the rule here %.o: %.cpp $(COMPILE.cc) $< $(OUTPUT_OPTION)