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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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.)