diff options
author | Patrick Spek <p.spek@tyil.nl> | 2022-06-05 08:58:00 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2022-06-05 08:58:00 +0200 |
commit | f18666297208e3166a09a0ac380931009353fc0c (patch) | |
tree | 4c4887e18f8bcb7371792ee4311be662b09b2112 | |
parent | e310bbf38d79e426b1ad057ae2cbe2a512b556ed (diff) | |
download | bashtard-f18666297208e3166a09a0ac380931009353fc0c.tar.gz bashtard-f18666297208e3166a09a0ac380931009353fc0c.tar.bz2 |
Let targetless make inform to use make install
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -7,6 +7,9 @@ DESTDIR=/usr ETCDIR=/etc +all: + : # No build step required, use `make install` to install this program + install: bin lib share uninstall: @@ -46,4 +49,4 @@ share: share/os.d \ "$(DESTDIR)/share/bashtard" -.PHONY: install uninstall qa bin lib man share +.PHONY: all install uninstall qa bin lib man share |