11 lines
215 B
Makefile
Executable File
11 lines
215 B
Makefile
Executable File
first:
|
|
gcc src/main.c -o main
|
|
|
|
install:
|
|
echo "alias wordle='$(realpath build/main)'" >> ~/.bashrc
|
|
echo "WORDLE_PATH='$(realpath build/main)'" >> ~/.bashrc
|
|
export WORDLE_PATH
|
|
source ~/.bashrc
|
|
run:
|
|
./build/main
|