aboutgitcodelistschat:MatrixIRC
path: root/demo/Makefile
blob: 6b8558f045a55a01fc2e890e4e9cad41adfb1475 (plain) (blame)
1
2
3
4
5
6
7
8
9
SRCS=$(wildcard *.c)

all: $(SRCS:%.c=%)

clean:
	$(RM) $(SRCS:%.c=%)

%: %.c
	$(CC) $(CFLAGS) -o $@ $<