4 CFLAGS
=-g
-Wall
-Wextra
-pedantic
-std
=c99
-Werror
15 CFILES
=$(wildcard *.c
)
16 HFILES
=$(wildcard *.h
)
17 OFILES
=$(patsubst %.c
,%.o
,$(CFILES
))
23 matroid_find
: $(OFILES
)
24 $(CC
) -o
$@
$^
$(LDFLAGS
)
31 # Not automatically kept in sync!
33 matroid_find.o
: matroid_find.c Makefile
$(HFILES
)
34 $(CC
) $(CFLAGS
) -o
$@
-c
$<