OS1/smallsh/makefile

12 lines
163 B
Makefile
Raw Normal View History

2023-11-09 03:07:32 -08:00
CC=gcc --std=gnu99 -g
output=smallsh
2023-11-15 03:50:56 -08:00
all: main.c main.h
$(CC) main.c -o $(output)
2023-11-09 03:07:32 -08:00
test: all
2023-11-15 03:48:20 -08:00
./p3testscript 2>&1
2023-11-09 03:07:32 -08:00
clean:
2023-11-15 23:15:15 -08:00
rm -fr *.o vgcore.* junk* $(output)