1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r5112: Fix for shared object creation in examples. Bugzilla #2058.

This commit is contained in:
Tim Potter 2005-01-30 22:47:26 +00:00 committed by Gerald (Jerry) Carter
parent 3317482020
commit 8e5db6f08c
2 changed files with 8 additions and 8 deletions

View File

@ -9,7 +9,7 @@ SAMBA_INCL = ../../source/include
UBIQX_SRC = ../../source/ubiqx
SMBWR_SRC = ../../source/smbwrapper
CFLAGS = -I$(SAMBA_SRC) -I$(SAMBA_INCL) -I$(UBIQX_SRC) -I$(SMBWR_SRC) -Wall -g
AUTH_OBJS = auth_skel.so
AUTH_OBJS = auth_skel.la
# Default target
@ -17,8 +17,8 @@ default: $(AUTH_OBJS)
# Pattern rules
%.so: %.lo
$(LIBTOOL) --mode=link $(CC) -shared -o $@ $< $(LDFLAGS)
%.la: %.lo
$(LIBTOOL) --mode=link $(CC) -module -o $@ $< $(LDFLAGS)
%.lo: %.c
$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
@ -28,4 +28,4 @@ default: $(AUTH_OBJS)
clean:
rm -rf .libs
rm -f core *~ *% *.bak \
$(AUTH_OBJS) $(AUTH_OBJS:.so=.o) $(AUTH_OBJS:.so=.lo)
$(AUTH_OBJS) $(AUTH_OBJS:.la=.o) $(AUTH_OBJS:.la=.lo)

View File

@ -9,7 +9,7 @@ SAMBA_INCL = ../../source/include
UBIQX_SRC = ../../source/ubiqx
SMBWR_SRC = ../../source/smbwrapper
CFLAGS = -I$(SAMBA_SRC) -I$(SAMBA_INCL) -I$(UBIQX_SRC) -I$(SMBWR_SRC) -Wall -g -I/usr/include/heimdal -fPIC
PDB_OBJS = test.so
PDB_OBJS = test.la
# Default target
@ -17,8 +17,8 @@ default: $(PDB_OBJS)
# Pattern rules
%.so: %.lo
$(LIBTOOL) --mode=link $(CC) -shared -o $@ $< $(LDFLAGS)
%.la: %.lo
$(LIBTOOL) --mode=link $(CC) -module -o $@ $< $(LDFLAGS) -rpath /usr/lib/samba/pdb/
%.lo: %.c
$(LIBTOOL) --mode=compile $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
@ -28,4 +28,4 @@ default: $(PDB_OBJS)
clean:
rm -rf .libs
rm -f core *~ *% *.bak \
$(PDB_OBJS) $(PDB_OBJS:.so=.o) $(PDB_OBJS:.so=.lo)
$(PDB_OBJS) $(PDB_OBJS:.la=.o) $(PDB_OBJS:.la=.lo)