aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2024-01-01 13:28:48 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2024-01-01 13:28:48 -0500
commit236b17c038967cb4c761c5bec39d37dca360adea (patch)
treeeee926f2f86624782e6f4a2903d6b76234af76cd /Makefile
parenta43600011a3ee977a10fdc863e5b79c272a7b5bd (diff)
downloadpm-236b17c038967cb4c761c5bec39d37dca360adea.tar.gz
pm-236b17c038967cb4c761c5bec39d37dca360adea.tar.xz
Add support for MacOS
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5aeb748..483d4f2 100644
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,11 @@ PREFIX ?= /usr/local
CC ?= cc
CFLAGS ?= -D_DEFAULT_SOURCE -std=c99 -pedantic -Wall -O2 -s
-all: pm-fmtdb
+all: pm-fmtdb pm-genid
-install: pm-fmtdb
+install: pm-fmtdb pm-genid
install -m 755 pm-fmtdb $(PREFIX)/bin/pm-fmtdb
+ install -m 755 pm-genid $(PREFIX)/bin/pm-genid
install -m 755 pm $(PREFIX)/bin/pm
clean: