mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
27758f20f5
PR: 22276 Submitted by: maintainer
23 lines
633 B
Plaintext
23 lines
633 B
Plaintext
--- Makefile.orig Tue Oct 24 10:51:53 2000
|
|
+++ Makefile Tue Oct 24 11:06:47 2000
|
|
@@ -2,8 +2,8 @@
|
|
|
|
CC ?= gcc
|
|
LOCALBASE ?= /usr/local
|
|
-CFLAGS += -Wall -Werror
|
|
-OPT_FLAGS = -L${LOCALBASE}/lib
|
|
+CFLAGS += -Wall -I${LOCALBASE}/include
|
|
+OPT_FLAGS = -L${LOCALBASE}/lib -lgnugetopt
|
|
OBJS = mp3_check.o \
|
|
mp3_check_misc.o
|
|
|
|
@@ -21,7 +21,7 @@
|
|
cat MILESTONE.INTRO
|
|
|
|
install: all
|
|
- install -m 755 -o root -g root mp3_check ${LOCALBASE}/bin
|
|
+ install -m 755 -o root -g wheel mp3_check ${LOCALBASE}/bin
|
|
|
|
# The FreeBSD Makefile options need a little work, but this will work for now.
|
|
freebsd: mp3_check.c mp3_check.h mp3_check_misc.c
|