dockapps/wmix/Makefile
Christophe CURIS 4c1bae53c4 wmix: created new file config.c to contain configuration related stuff
Management of the configuration is split in many places, the goal is to
regroup stuff together, starting with the loading from file stuff.

Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
2014-06-07 21:27:27 +01:00

21 lines
468 B
Makefile

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