Re-generated Makefiles

This commit is contained in:
Pierre Pronchery 2008-06-04 20:29:51 +00:00
parent c5262d2821
commit 2d1dbc5a29
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ CFLAGSF = -W
CFLAGS = -Wall -g -fPIC
AR = ar -rc
RANLIB = ranlib
LD = ld -shared
LD = $(CC) -shared
RM = rm -f
MKDIR = mkdir -p
INSTALL = install
@ -24,7 +24,7 @@ as.a: $(as_OBJS)
$(RANLIB) as.a
as.so: $(as_OBJS)
$(LD) -o as.so $(as_OBJS) -L $(LIBDIR) -rpath $(LIBDIR) -l as
$(LD) -o as.so $(as_OBJS) -L $(LIBDIR) -Wl,-rpath $(LIBDIR) -l as
graph_OBJS = graph.o
graph_CFLAGS = $(CPPFLAGS) $(CFLAGSF) $(CFLAGS)

View File

@ -6,7 +6,7 @@ targets=as,graph
[as]
type=library
sources=as.c
ldflags=-L $(LIBDIR) -rpath $(LIBDIR) -l as
ldflags=-L $(LIBDIR) -Wl,-rpath $(LIBDIR) -l as
install=$(LIBDIR)/c99/target
[graph]