textMagician/textmagicscripts/snake-to-cammel/Makefile
2024-07-31 23:12:49 +02:00

9 lines
159 B
Makefile

DEST=$(HOME)/.local/bin
SRC=snake-to-cammel.c
OUT=../snake_to_cammel
$(OUT): $(SRC)
gcc -pedantic -Wall -Wextra $(SRC) -o $(OUT)
install:
cp $(OUT) $(DEST)