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

Collapse All | Expand All

(-)Makefile.org (-3 / +3 lines)
Lines 5-11 Link Here
5
#######################################################
5
#######################################################
6
CXX=/usr/bin/g++
6
CXX=/usr/bin/g++
7
CC=/usr/bin/gcc
7
CC=/usr/bin/gcc
8
CFLAGS=-I. -I/usr/X11R6/include -I/usr/include/freetype2 -I/usr/include/freetype2/config -I/usr/include/libpng12 -I/usr/include
8
INCLUDES=-I. -I/usr/X11R6/include -I/usr/include/freetype2 -I/usr/include/freetype2/config -I/usr/include/libpng12 -I/usr/include
9
CXXLAGS=$(CFLAGS)
9
CXXLAGS=$(CFLAGS)
10
LDFLAGS=-L/usr/X11R6/lib -lXft -lX11 -lfreetype -lXrender -lfontconfig -lpng12 -lz -lm -lcrypt -lXpm -lXmu -lpng -ljpeg
10
LDFLAGS=-L/usr/X11R6/lib -lXft -lX11 -lfreetype -lXrender -lfontconfig -lpng12 -lz -lm -lcrypt -lXpm -lXmu -lpng -ljpeg
11
CUSTOM=-DHAVE_SHADOW
11
CUSTOM=-DHAVE_SHADOW
Lines 29-38 Link Here
29
	$(CXX) $(LDFLAGS) $(OBJECTS) -o $(NAME)
29
	$(CXX) $(LDFLAGS) $(OBJECTS) -o $(NAME)
30
30
31
.cpp.o:
31
.cpp.o:
32
	$(CXX) $(CFLAGS) $(DEFINES) $(CUSTOM) -c $< -o $@
32
	$(CXX) $(CFLAGS) $(INCLUDES) $(DEFINES) $(CUSTOM) -c $< -o $@
33
33
34
.c.o:
34
.c.o:
35
	$(CC) $(CFLAGS) $(DEFINES) $(CUSTOM) -c $< -o $@
35
	$(CC) $(CFLAGS) $(INCLUDES) $(DEFINES) $(CUSTOM) -c $< -o $@
36
36
37
install: slim install-theme
37
install: slim install-theme
38
	install -D -m 755 slim $(DESTDIR)$(PREFIX)/bin/slim
38
	install -D -m 755 slim $(DESTDIR)$(PREFIX)/bin/slim

Return to bug 107526