]> rtime.felk.cvut.cz Git - sojka/can-syscalls-examples.git/blob - Makefile
Other candump implementations
[sojka/can-syscalls-examples.git] / Makefile
1 CFLAGS = -g -O2 -Wall
2
3 SRCS = $(wildcard *.c)
4 BINS = $(SRCS:%.c=%)
5
6 all: $(BINS)
7
8 %: %.c common.h
9         $(CC) $(CFLAGS) -o $@ $<