]> git.pld-linux.org Git - packages/arabica.git/blob - arabica-makefile.patch
4d5bbfa79fff33aca73e6381e24a6d852c66bd30
[packages/arabica.git] / arabica-makefile.patch
1 --- arabica-2004-february/examples/SAX/Makefile~        2003-09-10 15:34:07.000000000 +0200
2 +++ arabica-2004-february/examples/SAX/Makefile 2005-06-12 14:02:37.840087048 +0200
3 @@ -7,7 +7,7 @@
4  LIBS_DIRS += -L../../bin 
5  
6  STATIC_LIBS +=
7 -DYNAMIC_LIBS += -lArabica
8 +MORE_LIBS = $(DYNAMIC_LIBS) -lArabica
9  
10  ######################################
11  # SOURCE FILES
12 @@ -28,15 +28,15 @@
13  all : pyx simple_handler writer
14  
15  pyx$ : $(PYX_OBJS)
16 -       $(LD) $(LDFLAGS) -o $@ $(PYX_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(DYNAMIC_LIBS)
17 +       $(LD) $(LDFLAGS) -o $@ $(PYX_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(MORE_LIBS)
18         $(COPY) pyx$(EXESUFFIX) ../../bin
19  
20  simple_handler : $(SIMPLE_OBJS)
21 -       $(LD) $(LDFLAGS) -o $@ $(SIMPLE_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(DYNAMIC_LIBS)
22 +       $(LD) $(LDFLAGS) -o $@ $(SIMPLE_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(MORE_LIBS)
23         $(COPY) simple_handler$(EXESUFFIX) ../../bin
24  
25  writer : $(WRITER_OBJS)
26 -       $(LD) $(LDFLAGS) -o $@ $(WRITER_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(DYNAMIC_LIBS)
27 +       $(LD) $(LDFLAGS) -o $@ $(WRITER_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(MORE_LIBS)
28         $(COPY) writer$(EXESUFFIX) ../../bin
29  
30  ######################
31 --- arabica-2004-february/examples/SAX2DOM/Makefile~    2003-09-10 15:34:07.000000000 +0200
32 +++ arabica-2004-february/examples/SAX2DOM/Makefile     2005-06-12 14:09:43.491378216 +0200
33 @@ -7,7 +7,7 @@
34  LIBS_DIRS += -L../../bin 
35  
36  STATIC_LIBS +=
37 -DYNAMIC_LIBS += -lArabica
38 +MORE_LIBS = $(DYNAMIC_LIBS) -lArabica
39  
40  ######################################
41  # SOURCE FILES
42 @@ -32,11 +32,11 @@
43  all : sax2dom_test domwriter
44  
45  sax2dom_test : $(SAXDOM_OBJS) $(CPPUNITFW_OBJS) $(CPPUNITUI_OBJS)
46 -       $(LD) $(LDFLAGS) -o $@ $(SAXDOM_OBJS) $(CPPUNITFW_OBJS) $(CPPUNITUI_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(DYNAMIC_LIBS)
47 +       $(LD) $(LDFLAGS) -o $@ $(SAXDOM_OBJS) $(CPPUNITFW_OBJS) $(CPPUNITUI_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(MORE_LIBS)
48         $(COPY) sax2dom_test$(EXESUFFIX) ../../bin
49  
50  domwriter : $(DOMWRITER_OBJS)
51 -       $(LD) $(LDFLAGS)  -o $@ $(DOMWRITER_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(DYNAMIC_LIBS)
52 +       $(LD) $(LDFLAGS)  -o $@ $(DOMWRITER_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(MORE_LIBS)
53         $(COPY) domwriter$(EXESUFFIX) ../../bin
54  
55  ######################
56 --- arabica-2004-february/examples/Utils/Makefile~      2005-06-12 15:04:08.797976160 +0200
57 +++ arabica-2004-february/examples/Utils/Makefile       2005-06-12 15:03:59.181438096 +0200
58 @@ -7,7 +7,7 @@
59  LIBS_DIRS += -L../../bin 
60  
61  STATIC_LIBS +=
62 -DYNAMIC_LIBS += -lArabica
63 +MORE_LIBS = $(DYNAMIC_LIBS) -lArabica
64  
65  ######################################
66  # SOURCE FILES
67 @@ -20,7 +20,7 @@
68  all : transcode
69  
70  transcode : $(TRANSCODE_OBJS)
71 -       $(LD) $(LDFLAGS) -o $@ $(TRANSCODE_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(DYNAMIC_LIBS)
72 +       $(LD) $(LDFLAGS) -o $@ $(TRANSCODE_OBJS) $(LIBS_DIRS) $(STATIC_LIBS) $(MORE_LIBS)
73         $(COPY) transcode$(EXESUFFIX) ../../bin
74  
75  
This page took 0.065947 seconds and 2 git commands to generate.