Shell/Makefile
2019-03-08 20:32:01 +01:00

10 lines
77 B
Makefile

all: myshell.c
gcc -g -Wall -o myshell myshell.c
clean:
$(RM) myshell