make/tests/smoke-check-make-runs/smoke.mk

10 lines
138 B
Makefile

all: hello_world
hello_world: hello_world.o
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
clean:
rm -f hello_world hello_world.o
.SUFFIXES: .c