Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 67060 | Differences between
and this patch

Collapse All | Expand All

(-)smbpwman-0.5.orig/Makefile (-5 / +8 lines)
Lines 27-40 Link Here
27
version.h:	version
27
version.h:	version
28
	echo "#define VERSION \""$(VERSION)"\"" > version.h
28
	echo "#define VERSION \""$(VERSION)"\"" > version.h
29
29
30
smbpwman:	$(INCLUDES) smbpwcommon.o smbpwman.o
30
libsmbpwman:	$(INCLUDES) smbpwcommon.o
31
	$(CC) $(CFLAGS) $(LDFLAGS) -o smbpwman smbpwcommon.o smbpwman.o $(LIBS)
31
	$(CC) $(CFLAGS) $(LDFLAGS) -shared -o libsmbpwman.so smbpwcommon.o $(LIBS)
32
32
33
smbpwtest:	$(INCLUDES) smbpwcommon.o smbpwtest.o
33
smbpwman:	$(INCLUDES) libsmbpwman smbpwman.o
34
	$(CC) $(CFLAGS) $(LDFLAGS) -o smbpwtest smbpwcommon.o smbpwtest.o $(LIBS)
34
	$(CC) $(CFLAGS) $(LDFLAGS) -lsmbpwman -o smbpwman  -L. smbpwman.o $(LIBS)
35
36
smbpwtest:	$(INCLUDES) libsmbpwman smbpwtest.o
37
	$(CC) $(CFLAGS) $(LDFLAGS) -lsmbpwman -o smbpwtest -L. smbpwtest.o $(LIBS)
35
38
36
clean:
39
clean:
37
	rm -f smbpwman smbpwtest *.o version.h
40
	rm -f smbpwman smbpwtest *.o version.h *.so
38
	cd automount ; make clean
41
	cd automount ; make clean
39
	cd pam ; make clean
42
	cd pam ; make clean
40
43

Return to bug 67060