-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
52 lines (35 loc) · 1.04 KB
/
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
44
45
46
47
48
49
50
51
52
OBJS = main.o ip.o mdns.o wledapi.o input.o mqtt.o announce.o debug.o snake.o tetris.o flappy.o pong.o breakout.o invaders.o
TARGET = matelight
CC = gcc
LD = gcc
CFLAGS = -Wall -W -Wextra
LDFLAGS = -pthread
CFLAGS += --std=gnu99 -pthread
ifdef RELEASE
CFLAGS += -O2 -fomit-frame-pointer
CFLAGS += -DNDEBUG
LDFLAGS += -s
else
CFLAGS += -DDEBUG
CFLAGS += -O0 -ggdb
endif
CFLAGS += -pipe
LDFLAGS += -lm
CFLAGS += $(shell pkg-config avahi-client --cflags)
LDFLAGS += $(shell pkg-config avahi-client --libs)
CFLAGS += $(shell pkg-config libcurl --cflags)
LDFLAGS += $(shell pkg-config libcurl --libs)
CFLAGS += $(shell pkg-config libudev --cflags)
LDFLAGS += $(shell pkg-config libudev --libs)
CFLAGS += $(shell pkg-config libmosquitto --cflags)
LDFLAGS += $(shell pkg-config libmosquitto --libs)
all: $(TARGET)
$(TARGET): $(OBJS)
$(LD) -o $@ $^ $(LDFLAGS)
%.o: %.c *.h
$(CC) -c -o $@ $< $(CFLAGS)
clean:
rm -f $(TARGET) $(OBJS)
install:
install -m 755 $(TARGET) /usr/local/bin/
.PHONY: all clean install