I want to experiment with GCC whole program optimizations. To do so I have to pass all C-files at once to the compiler frontend. However, I use makefiles to automate my buil
SRCS=$(wildcard *.c) OBJS=$(SRCS:.c=.o) all: $(OBJS)