mirror of
git://sigrok.org/libserialport
synced 2023-08-10 21:13:24 +03:00
17 lines
286 B
Makefile
17 lines
286 B
Makefile
|
CC = gcc
|
||
|
PKG_CONFIG = pkg-config
|
||
|
CFLAGS = -g -Wall $(shell $(PKG_CONFIG) --cflags libserialport)
|
||
|
LIBS = $(shell $(PKG_CONFIG) --libs libserialport)
|
||
|
|
||
|
SOURCES = $(wildcard *.c)
|
||
|
|
||
|
BINARIES = $(SOURCES:.c=)
|
||
|
|
||
|
%: %.c
|
||
|
$(CC) $(CFLAGS) $< $(LIBS) -o $@
|
||
|
|
||
|
all: $(BINARIES)
|
||
|
|
||
|
clean:
|
||
|
rm $(BINARIES)
|