wut/crt/Makefile

26 lines
454 B
Makefile

WUT_ROOT := $(CURDIR)/..
include $(WUT_ROOT)/rules/ppc.mk
CFILES := $(wildcard *.c)
SFILES := $(wildcard *.S)
OFILES := $(CFILES:.c=.o) $(SFILES:.S=.o)
OUTPUT := libcrt
all: $(OUTPUT).a $(OFILES)
clean:
@echo "[RM] $(notdir $(OUTPUT))"
@rm -f $(OFILES) $(OUTPUT).a
install: all
@mkdir -p $(WUT_ROOT)/lib
@cp -f *.a $(WUT_ROOT)/lib
%.o: %.S
@echo "[CC] $(notdir $<)"
@$(CC) $(CFLAGS) -c $< -o $@
$(OUTPUT).a: $(OFILES)
.PHONY: all clean