📄 makefile
字号:
## Makefile for the Offline NT Password Editor### Change here to point to the needed OpenSSL libraries & .h files# See INSTALL for more info.##SSLPATH=/usr/local/sslOSSLPATH=/usrOSSLLIB=$(OSSLPATH)/libOSSLINC=$(OSSLPATH)/includeCC=gccCFLAGS= -DUSEOPENSSL -g -I. -I$(OSSLINC) -Wall# This is to link with whatever we have, SSL crypto lib we put in staticLIBS=-L$(OSSLLIB) $(OSSLLIB)/libcrypto.a# ** This is for linking with older and more lean libc than installed as default# in RH7+ or newer Mandrakes. And probably others. GLIBC has BLOATED!# Use the reloc (and force it) in rpm to install into /usr/local :)#LIBS=-L$(OSSLLIB) -L/usr/local/libold -L/usr/local/usr/lib \$(OSSLLIB)/libcrypto.so /usr/local/usr/lib/crt1.o /usr/local/usr/lib/crti.o \/usr/local/libold/ld-2.0.5.so \/usr/local/usr/lib/libc.so /usr/local/libold/libc-2.0.5.so /usr/local/usr/lib/crtn.o all: chntpwchntpw: chntpw.o ntreg.o $(CC) $(CFLAGS) -o chntpw chntpw.o ntreg.o $(LIBS)cpnt: cpnt.o $(CC) $(CFLAGS) -o cpnt cpnt.o $(LIBS)#ts: ts.o ntreg.o# $(CC) $(CFLAGS) -nostdlib -o ts ts.o ntreg.o $(LIBS)# -Wl,-t.c.o: $(CC) -c $(CFLAGS) $<clean: rm -f *.o chntpw *~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -