C userspace programs

This commit is contained in:
2025-09-04 23:20:30 +02:00
parent afa4d383e0
commit 90266f044b
51 changed files with 259 additions and 174 deletions

View File

@ -14,9 +14,9 @@ OBJ := $(call GET_OBJ, $(SRCFILES))
all: $(TARGET)
hello: $(OBJ)
$(TARGET): $(OBJ)
$(LD) $^ $(LDFLAGS) -o $@
echo $(realpath hello) >> $(FILES)
echo $$(realpath $(TARGET)) >> $(FILES)
clean:
rm -f $(OBJ) $(TARGET)