blob: 4f5202710c23d12df1629a82134ee1318c88409a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CFLAGS="-Werror=implicit-function-declaration"
anzeige: anzeige.c fonts.h input_gadgets.o multiplexer.o
gcc -o "$@" $(CFLAGS) -lpthread -lcurl $^
input_gadgets.o: input_gadgets.c input_gadgets.h
gcc -o "$@" $(CFLAGS) -c -lcurl "$<"
multiplexer.o: multiplexer.c multiplexer.h
gcc -o "$@" $(CFLAGS) -c -lpthread "$<"
all: anzeige
.PHONY: all
|