10 lines
77 B
Makefile
10 lines
77 B
Makefile
|
all: myshell.c
|
||
|
|
||
|
gcc -g -Wall -o myshell myshell.c
|
||
|
|
||
|
|
||
|
|
||
|
clean:
|
||
|
|
||
|
$(RM) myshell
|