We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89169d8 commit 3556be0Copy full SHA for 3556be0
makefile
@@ -64,6 +64,18 @@ TESTOBJS=$(addprefix bin/tests/, $(TESTNAMES:.cpp=.o))
64
65
include wmake.mk
66
67
+prefix=/usr/local
68
+
69
+install: bin/wake
70
+ mkdir -p $(prefix)/bin
71
+ mkdir -p $(prefix)/share/wake/stdtable
72
+ mkdir -p $(prefix)/share/wake/stdobj
73
+ install -m 0755 bin/wake $(prefix)/bin
74
+ install -m 0644 $(WAKETABLEOBJS) $(prefix)/share/wake/stdtable
75
+ install -m 0644 bin/wakeobj/std.o $(prefix)/share/wake/stdobj
76
77
+.PHONY: install
78
79
windowsbuildready: $(GENOBJS) $(WAKETABLEINCLUDES) bin/wakeobj/std.o
80
zip windowsbuildready -r .
81
0 commit comments