1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# Makefile for OpenVMS\
# Date : 11 November 2008
libgunicode_OBJECTS = ArabicForms.obj,alphabet.obj,backtrns.obj,char.obj,\
cjk.obj,memory.obj,ucharmap.obj,unialt.obj,ustring.obj,\
utype.obj,usprintf.obj,gwwiconv.obj
CFLAGS=/incl=([-.inc])/name=(as_is,short)/nowarn/define=("HAVE_CONFIG_H=1")
all : [-.libs]libgunicode.olb
write sys$output "unicode finished"
[-.libs]libgunicode.olb : $(libgunicode_OBJECTS)
library/create [-.libs]libgunicode.olb $(libgunicode_OBJECTS)
$(libgunicode_OBJECTS) : [-.inc]config.h
ArabicForms.obj : ArabicForms.c
alphabet.obj : alphabet.c
backtrns.obj : backtrns.c
char.obj : char.c
cjk.obj : cjk.c
memory.obj : memory.c
ucharmap.obj : ucharmap.c
unialt.obj : unialt.c
ustring.obj : ustring.c
utype.obj : utype.c
usprintf.obj : usprintf.c
gwwiconv.obj : gwwiconv.c
|