fedi_tools/Makefile
2023-06-07 02:36:25 +02:00

13 lines
211 B
Makefile

all:
gcc -o fedi_post fedi_post.c $(shell pkg-config --cflags --libs r_util r_io libcurl)
clean:
rm fedi_post
install:
cp fedi_post /usr/bin
chmod 755 /usr/bin/fedi_post
uninstall:
rm /usr/bin/fedi_post