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