OS1/smallsh/makefile

12 lines
163 B
Makefile
Raw Permalink Normal View History

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