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

Collapse All | Expand All

(-)Makefile.in.orig (-5 / +5 lines)
Lines 45-51 Link Here
45
	rm -rf *.cache 
45
	rm -rf *.cache 
46
46
47
wmalms: wmalms.dep  $(MODULES)
47
wmalms: wmalms.dep  $(MODULES)
48
	gcc -o wmalms $(CFLAGS) $(MODULES) $(LIBDIR) -lX11 -lXpm $(LIBEXT) $(LIBLMS)
48
	$(CC) -o wmalms $(CFLAGS) $(MODULES) $(LIBDIR) $(LDFLAGS) -lX11 -lXpm $(LIBEXT) $(LIBLMS)
49
	@echo $(SEP)
49
	@echo $(SEP)
50
	@echo "You've done it!"
50
	@echo "You've done it!"
51
	@echo "Now log in as root and type 'make install' to install the binary and documents"
51
	@echo "Now log in as root and type 'make install' to install the binary and documents"
Lines 60-70 Link Here
60
	$(CC) $(CFLAGS) $(INCLUDES) -MM $(patsubst %.o,%.c,$(MODULES)) > wmalms.dep
60
	$(CC) $(CFLAGS) $(INCLUDES) -MM $(patsubst %.o,%.c,$(MODULES)) > wmalms.dep
61
61
62
install:
62
install:
63
	$(INSTALL) -d  ${BINDIR}
63
	$(INSTALL) -d  $(DESTDIR)${BINDIR}
64
	$(INSTALL) -s  wmalms  ${BINDIR}
64
	$(INSTALL) wmalms  $(DESTDIR)${BINDIR}
65
ifneq ("$(WITH_RPM)", "yes")
65
ifneq ("$(WITH_RPM)", "yes")
66
	$(INSTALL) -d  ${DOCDIR}
66
	$(INSTALL) -d  $(DESTDIR)${DOCDIR}
67
	$(INSTALL)  README *.html  ${DOCDIR}
67
	$(INSTALL)  README manual.html  $(DESTDIR)${DOCDIR}
68
endif
68
endif
69
	@echo $(SEP)
69
	@echo $(SEP)
70
	@echo "Installation of wmalms ${VERSION}  completed."
70
	@echo "Installation of wmalms ${VERSION}  completed."

Return to bug 207945