Shell/Makefile

10 lines
77 B
Makefile
Raw Normal View History

2019-03-08 20:32:01 +01:00
all: myshell.c
gcc -g -Wall -o myshell myshell.c
clean:
$(RM) myshell