OS1/smallsh/makefile
2023-11-15 11:50:56 +00:00

11 lines
157 B
Makefile

CC=gcc --std=gnu99 -g
output=smallsh
all: main.c main.h
$(CC) main.c -o $(output)
test: all
./p3testscript 2>&1
clean:
rm -fr *.o vgcore.* $(output)