Add files via upload

This commit is contained in:
amogus3016
2022-01-05 09:59:33 -05:00
committed by GitHub
parent f2855bb60b
commit 24d3f3768e

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
CC=gcc
CFLAGS=-O2 -Wall vte3
$(info Installing Sherpa...)
all: sherpa
sherpa: sherpa.o
sherpa.o: sherpa.c
$(info Cleaning up...)
clean:
rm -f sherpa sherpa.o
run: sherpa
./sherpa
$(info Sherpa was installed sucessfully.)