StupidOS/lib/csu/Makefile

14 lines
173 B
Makefile
Raw Permalink Normal View History

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