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.
|
cello:
|
|
gcc -g -o cello cello.c
|
|
|
|
clean:
|
|
rm cello
|
|
|
|
# $(DESTDIR) variable is a GNU make built-in and is commonly used to specify installation to a directory different than the root directory.
|
|
install:
|
|
mkdir -p $(DESTDIR)/usr/bin
|
|
install -m 0755 cello $(DESTDIR)/usr/bin/cello
|