8 lines
145 B
Makefile
Executable File
8 lines
145 B
Makefile
Executable File
first:
|
|
gcc src/main.c -o main
|
|
|
|
install:
|
|
/bin/bash echo "alias wordlec='$(realpath main)'" >> ~/.bashrc
|
|
/bin/bash source ~/.bashrc
|
|
run:
|
|
./main
|