mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
36 lines
950 B
Plaintext
36 lines
950 B
Plaintext
--- Makefile.orig Tue Mar 7 14:21:48 2000
|
|
+++ Makefile Tue Mar 7 14:23:36 2000
|
|
@@ -3,7 +3,7 @@
|
|
#
|
|
initial_directory := "/mp3"
|
|
mpg123_location := "mpg123"
|
|
-install_directory := "$(HOME)/bin"
|
|
+install_directory := "$(PREFIX)/bin"
|
|
|
|
#
|
|
# Location of config file (YOU create this file by yourself, see README)
|
|
@@ -15,7 +15,7 @@
|
|
#
|
|
|
|
## An ass repository is a nice thing to have. See README
|
|
-ass_repository := "$(HOME)/.cmp3ass"
|
|
+#ass_repository := "$(HOME)/.cmp3ass"
|
|
|
|
## Define this for bufferring or add other parameters to mpg123
|
|
mpg123_params := -b 320
|
|
@@ -34,8 +34,8 @@
|
|
# stands. Change the code to do something else you want it to do...
|
|
#PARAMS +=-DMY_CD
|
|
LIBS= -lncurses
|
|
-CFLAGS= -Wall -g -O2
|
|
-CC= gcc
|
|
+CFLAGS+= -Wall
|
|
+CC?= gcc
|
|
OBJS= llist.o cmp3common.o cmp3fileio.o cmp3manager.o cmp3curses.o \
|
|
cmp3llist.o cmp3main.o cmp3listfiles.o cmp3playlist.o cmp3volume.o \
|
|
cmp3general.o
|
|
@@ -91,4 +91,4 @@
|
|
|
|
include .depend
|
|
|