mirror of
https://github.com/wesstr/HarambeShell.git
synced 2026-05-14 22:58:29 -05: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
|