freebsd-ports/audio/mp3chew/files/patch-aa
2004-02-16 00:27:33 +00:00

13 lines
404 B
Text

--- Makefile.orig Sat Nov 11 12:36:32 2000
+++ Makefile Sun Feb 15 16:25:11 2004
@@ -1,8 +1,9 @@
CC = g++
TARGET = mp3chew
+CXXFLAGS+= -Wall ${PTHREAD_CFLAGS}
DEPENDS = main.o CMp3Chew.o CMp3Filter.o CMp3SongList.o CMp3Header.o \
CMp3Keys.o CMp3Display.o
-ARGS = -Wall -lpthread -lncurses
+ARGS = ${PTHREAD_LIBS} -lncurses
$(TARGET) : $(DEPENDS)
$(CC) $(ARGS) -o $(TARGET) $(DEPENDS)