aboutsummaryrefslogtreecommitdiff
path: root/scripts/permute/Makefile
blob: 531b4840e93fef33a41d64ec5c8795f48d83b1ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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