7 lines
69 B
Makefile
7 lines
69 B
Makefile
CFLAGS += -O3 -s
|
|
|
|
all: hello-world
|
|
|
|
%: %.c
|
|
$(CC) $(CFLAGS) -o $@ $<
|