aboutsummaryrefslogtreecommitdiff
path: root/util/k8resdump/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'util/k8resdump/Makefile')
-rw-r--r--util/k8resdump/Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/util/k8resdump/Makefile b/util/k8resdump/Makefile
index 7847861723..e2603511fa 100644
--- a/util/k8resdump/Makefile
+++ b/util/k8resdump/Makefile
@@ -16,7 +16,6 @@
PROGRAM = k8resdump
CC = gcc
-STRIP = strip
INSTALL = /usr/bin/install
PREFIX = /usr/local
#CFLAGS = -O2 -g -Wall -Werror
@@ -26,7 +25,6 @@ ifeq ($(OS_ARCH), SunOS)
LDFLAGS = -lpci
else
LDFLAGS = -lpci -lz -static
-STRIP_ARGS = -s
endif
OBJS = k8resdump.o
@@ -35,7 +33,6 @@ all: pciutils dep $(PROGRAM)
$(PROGRAM): $(OBJS)
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
- $(STRIP) $(STRIP_ARGS) $(PROGRAM)
clean:
rm -f *.o *~