aboutsummaryrefslogtreecommitdiff
path: root/scripts/permute/Makefile
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2015-05-21 19:24:24 +0200
committerKarel Kočí <cynerd@email.cz>2015-05-21 19:24:24 +0200
commit2c46c7e4b57604a299b0639560934e1f523f725a (patch)
tree6b50892eafe43d923b2e9141f56e484a04bd75f9 /scripts/permute/Makefile
parentc53827c97a8f749d7bd2e993c7fc5792d94435a3 (diff)
downloadlinux-conf-perf-2c46c7e4b57604a299b0639560934e1f523f725a.tar.gz
linux-conf-perf-2c46c7e4b57604a299b0639560934e1f523f725a.tar.bz2
linux-conf-perf-2c46c7e4b57604a299b0639560934e1f523f725a.zip
Rename program permute to permute_conf
Diffstat (limited to 'scripts/permute/Makefile')
-rw-r--r--scripts/permute/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/scripts/permute/Makefile b/scripts/permute/Makefile
deleted file mode 100644
index 531b484..0000000
--- a/scripts/permute/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-MAKEFLAGS += --no-builtin-rules
-.PHONY: all clean
-.SUFFIXES:
-
-all: permute
-
-KCONFIG_PREFIX = ../shared/kconfig
-include $(KCONFIG_PREFIX)/files.mk
-
-SRC = permute.c \
- menudata.c \
- dotconf.c
-OBJ = $(patsubst %.c,%.o,$(SRC))
-CFLAGS = -O0 -Wall -ggdb -DDEBUG
-INCLUDES = -I../shared
-
-%.o: %.c
- gcc -c $(CFLAGS) -o $@ $^ $(INCLUDES)
-
-permute: $(OBJ) $(KCONFIG_OBJ)
- gcc -o $@ $^
-
-clean::
- $(RM) $(OBJ)
- $(RM) permute