You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
201 B
Makefile
10 lines
201 B
Makefile
2 years ago
|
all: testapp.c
|
||
|
g++ -std=c++11 -g -o testapp testapp.c -lcurl
|
||
|
|
||
|
clean:
|
||
|
rm testapp
|
||
|
|
||
|
install: testapp
|
||
|
install -m 0755 testapp /usr/local/sbin
|
||
|
install -m 0644 testapp.service /usr/lib/systemd/system/
|