This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
corelibs/Makefile

18 lines
222 B
Makefile
Raw Normal View History

2022-01-16 14:16:35 +00:00
.SUFFIXES:
include config.mk
2022-01-16 14:16:35 +00:00
OBJ := $(SRC:.c=.o)
2022-01-16 14:16:35 +00:00
all: $(OBJ) $(OUT)
%.o: %.c
2022-01-16 14:16:35 +00:00
$(CC) -o $@ -c $(CFLAGS) $<
clean:
2022-01-16 14:16:35 +00:00
rm -f $(OBJ) $(OUT)
2022-01-16 14:16:35 +00:00
ifneq ($(OUT),)
$(OUT): $(OBJ)
$(CC) -o "$@" $(LDFLAGS) $^
endif
.PHONY: all clean