OS1/smallsh/makefile
2023-11-16 07:15:15 +00:00

11 lines
163 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.* junk* $(output)