wmix: changed the makefile to use the standard practice LIBS variable for libraries

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
This commit is contained in:
Christophe CURIS 2014-06-07 21:21:40 +02:00 committed by Carlos R. Mafra
parent 65f5baad33
commit f5e5d2ffcb

View file

@ -1,6 +1,7 @@
CC = gcc
CFLAGS = -O3 -W -Wall
LDFLAGS = -L/usr/X11R6/lib
LIBS = -lXpm -lXext -lX11 -lm
OBJECTS = misc.o mixer-oss.o ui_x.o wmix.o
# where to install this program (also for packaging stuff)
@ -10,7 +11,7 @@ INSTALL_BIN = -m 755
INSTALL_DATA = -m 644
wmix: $(OBJECTS)
$(CC) -o $@ $(LDFLAGS) $(OBJECTS) -lXpm -lXext -lX11 -lm
$(CC) -o $@ $(LDFLAGS) $(OBJECTS) $(LIBS)
clean:
rm -rf *.o wmix *~