coreboot-libre-fam15h-rdimm/util/archive/Makefile

15 lines
160 B
Makefile
Raw Normal View History

2024-03-04 11:14:53 +01:00
PROGRAM = archive
HOSTCC ?= gcc
SRCS = $(PROGRAM).c
all: $(PROGRAM)
$(PROGRAM): $(SRCS)
$(HOSTCC) -o $@ $^
clean:
rm -f $(PROGRAM) *.o
.PHONY: all clean