mirror of
https://github.com/wesstr/HarambeShell.git
synced 2025-12-31 02:49:29 -06:00
9 lines
135 B
Makefile
9 lines
135 B
Makefile
#
|
|
#makefile for the harambe shell
|
|
|
|
target: harambe_shell.c
|
|
gcc -g -Wall -o harambe_shell harambe_shell.c
|
|
|
|
clean:
|
|
$(RM) harambe_shell
|