wrote a makefile and added background job support

This commit is contained in:
2026-05-12 14:21:31 +02:00
parent 5ef2199fe8
commit fc57be32eb
2 changed files with 28 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
CC = gcc
CFLAGS = -Wall
LIBS = -lreadline
tinysh: main.c
$(CC) $(CFLAGS) main.c -o tinysh $(LIBS)
clean:
rm -f tinysh