StupidOS/lib/csu/Makefile
d0p1 9a5b474ad2
Some checks failed
Build / test (push) Has been cancelled
Docs / test (push) Has been cancelled
chore: lib/ cleanup
2024-03-24 09:44:14 +01:00

13 lines
155 B
Makefile

TARGET = crt0.o
all: $(TARGET)
%.o: %.asm
$(AS) $< $@
clean:
$(RM) $(TARGET)
install: $(TARGET)
@ mkdir -p $(DESTDIR)
install $(TARGET) $(DESTDIR)