GMS Linux: start?

This commit is contained in:
2025-12-30 01:20:20 +00:00
commit ac241a9148
48 changed files with 2028 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
TARGET = xxd
SRCS = xxd.c
CC = gcc
CFLAGS = -static -Wall
OUT_BIN ?= $(TARGET)
all: $(OUT_BIN)
$(OUT_BIN): $(SRCS)
$(CC) $(CFLAGS) -o $@ $^
clean:
rm -f $(TARGET) *.o