mirror of
https://git.freebsd.org/ports.git
synced 2025-06-12 16:20:33 -04:00
See details here: https://github.com/wmutils/opt PR: 225142 Submitted by: Dmitri Goutnik <dg@syrec.org> Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14112
17 lines
343 B
Text
17 lines
343 B
Text
--- Makefile.orig 2016-10-04 08:01:36 UTC
|
|
+++ Makefile
|
|
@@ -22,12 +22,10 @@ manpages:
|
|
$(OBJ): $(HDR) util.o
|
|
|
|
.o:
|
|
- @echo "LD $@"
|
|
- @$(LD) $< -o $@ $(LDFLAGS) util.o
|
|
+ $(LD) $< -o $@ $(LDFLAGS) util.o
|
|
|
|
.c.o:
|
|
- @echo "CC $<"
|
|
- @$(CC) -c $< -o $@ $(CFLAGS)
|
|
+ $(CC) -c $< -o $@ $(CFLAGS)
|
|
|
|
install: $(BIN)
|
|
mkdir -p $(DESTDIR)$(PREFIX)/bin/
|