diff options
Diffstat (limited to 'scripts/permute/Makefile')
-rw-r--r-- | scripts/permute/Makefile | 25 |
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 |