forked from linux-sunxi/sunxi-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
43 lines (28 loc) · 797 Bytes
/
Makefile
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
CC = gcc
CFLAGS = -g -O0 -Wall -Wextra
CFLAGS += -std=c99 -D_POSIX_C_SOURCE=200112L
TOOLS = fexc bin2fex fex2bin bootinfo fel
MISC_TOOLS = phoenix_info
.PHONY: all clean
all: $(TOOLS)
misc: $(MISC_TOOLS)
clean:
@rm -vf $(TOOLS) $(MISC_TOOLS)
$(TOOLS): Makefile common.h
fex2bin bin2fex: fexc
ln -s $< $@
fexc: fexc.h script.h script.c \
script_bin.h script_bin.c \
script_fex.h script_fex.c
bootinfo: bootinfo.c
LIBUSB = libusb-1.0
LIBUSB_CFLAGS = `pkg-config --cflags $(LIBUSB)`
LIBUSB_LIBS = `pkg-config --libs $(LIBUSB)`
fel: fel.c
$(CC) $(CFLAGS) $(LIBUSB_CFLAGS) $(LDFLAGS) -o $@ $(filter %.c,$^) $(LIBS) $(LIBUSB_LIBS)
%: %.c
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(filter %.c,$^) $(LIBS)
.gitignore: Makefile
@for x in $(TOOLS) '*.o' '*.swp'; do \
echo $$x; \
done > $@