StupidOS/lib/csu/Makefile

14 lines
155 B
Makefile
Raw Normal View History

2024-03-24 08:44:14 +00:00
TARGET = crt0.o
all: $(TARGET)
%.o: %.asm
$(AS) $< $@
clean:
$(RM) $(TARGET)
install: $(TARGET)
@ mkdir -p $(DESTDIR)
install $(TARGET) $(DESTDIR)