StupidOS/lib/csu/Makefile
d0p1 🏳️‍⚧️ 0365dd5da5
Some checks are pending
Build / test (push) Waiting to run
Docs / test (push) Waiting to run
build: define INCDIR,BINDIR,LIBDIR...
2024-03-26 07:48:32 +01:00

14 lines
173 B
Makefile

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