[go: up one dir, main page]

Menu

[385e04]: / Makefile  Maximize  Restore  History

Download this file

14 lines (12 with data), 272 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
build:
@echo " - Building..."
@mkdir -p bin
@gcc -o bin/otp src/otp.c
@echo " - Built!"
@echo " - Testing..."
@sh test/otp.test.sh
@echo " - Tested!"
install:
@echo " - Installing..."
@mv ./bin/otp /usr/local/bin/otp
@echo " - Installed! You can use "otp" now"