baseconv/Makefile

17 lines
217 B
Makefile
Raw Normal View History

2022-11-20 04:52:54 +00:00
BIN = baseconv_example
OBJS = baseconv.o main.o
all: $(BIN)
$(BIN): $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS)
main.o: baseconv.h
clean:
rm -f $(BIN) $(OBJS)
distclean: clean
.PHONY: all clean distclean