11 lines
163 B
Makefile
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)
|