summary refs log tree commit diff
path: root/pkgs/tools/security/chntpw/01-chntpw-install-target.patch
blob: d3163a026f9152c9d1d244ab73c98bcfbe89ec06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
diff -urN chntpw-140201.orig/Makefile chntpw-140201/Makefile
--- chntpw-140201.orig/Makefile	2014-08-03 20:26:56.497161881 +0400
+++ chntpw-140201/Makefile	2014-08-04 12:57:16.563818342 +0400
@@ -10,6 +10,8 @@
 OSSLPATH=/usr
 OSSLINC=$(OSSLPATH)/include
 
+PREFIX ?= /usr
+
 CC=gcc
 
 ifeq      '$(shell gcc -dumpmachine)' 'x86_64-unknown-linux-gnu'
@@ -24,8 +26,12 @@
 #LIBS=-L$(OSSLLIB) $(OSSLLIB)/libcrypto.a
 LIBS=-L$(OSSLLIB)
 
+BINARIES := chntpw chntpw.static cpnt reged reged.static samusrgrp samusrgrp.static sampasswd sampasswd.static
 
-all: chntpw chntpw.static cpnt reged reged.static samusrgrp samusrgrp.static sampasswd sampasswd.static
+all: $(BINARIES)
+install: $(BINARIES)
+	mkdir -p $(PREFIX)/bin
+	cp $^ $(PREFIX)/bin
 
 chntpw: chntpw.o ntreg.o edlib.o libsam.o
 	$(CC) $(CFLAGS) -o chntpw chntpw.o ntreg.o edlib.o libsam.o $(LIBS)