18 lines
407 B
Makefile
18 lines
407 B
Makefile
all:
|
|
gcc -o fedi_post fedi_post.c $(shell pkg-config --cflags --libs r_util r_io libcurl)
|
|
gcc -o fedi_notifs fedi_notifs.c $(shell pkg-config --cflags --libs r_util r_io libcurl libjson)
|
|
|
|
clean:
|
|
rm fedi_post
|
|
rm fedi_notifs
|
|
|
|
install:
|
|
cp fedi_post /usr/bin
|
|
cp fedi_notifs /usr/bin
|
|
chmod 755 /usr/bin/fedi_post
|
|
chmod 755 /usr/bin/fedi_notifs
|
|
|
|
uninstall:
|
|
rm /usr/bin/fedi_post
|
|
rm /usr/bin/fedi_notifs
|