Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
share
/
doc
/
libicu-devel
/
samples
/
datecal
Upload
5 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
Makefile
655 B
-rw-r--r--
2019-04-11 22:26:16
Edit
Del
cal.cpp
1.88 KB
-rw-r--r--
2019-04-11 22:26:16
Edit
Del
ccal.c
1.98 KB
-rw-r--r--
2019-04-11 22:26:16
Edit
Del
Editing: Makefile
(655 B)
Path: /usr/share/doc/libicu-devel/samples/datecal/Makefile
Back
# Copyright (C) 2016 and later: Unicode, Inc. and others. # License & terms of use: http://www.unicode.org/copyright.html#License # # Copyright (c) 2000-2006 IBM, Inc. and others # sample code makefile # Usage: # - configure, build, install ICU (make install) # - make sure "icu-config" (in the ICU installed bin directory) is on # the path # - do 'make' in this directory #### definitions # Name of your target TARGET=datecal # All object files (C or C++) OBJECTS=cal.o ccal.o #### rules # Load in standard makefile definitions include ../defs.mk LDFLAGS += $(LDFLAGS_USTDIO) # the actual rules (this is a simple sample) include ../rules.mk