📄 makefile.in
字号:
# -*-Makefile-*- template for PKCIPE## Copyright 2000 Olaf Titz <olaf@bigred.inka.de>## This program is free software; you can redistribute it and/or# modify it under the terms of the GNU General Public License# as published by the Free Software Foundation; either version# 2 of the License, or (at your option) any later version.# $Id: Makefile.in,v 1.13 2003/05/10 20:07:44 olaf81825 Exp $lib:=../libprefix := @prefix@exec_prefix:= @exec_prefix@bindir := @bindir@sbindir := @sbindir@CIPED := @CIPED@PATHDEFS:= -DCIPED=\"$(sbindir)/$(CIPED)\"WARN := #-Wno-strict-prototypesCC := @CC@CFLAGS := @CFLAGS@ $(WARN)CPPFLAGS:= @CPPFLAGS@ -I.. -I$(lib)DEFS := @DEFS@ $(PATHDEFS) $(EXTRADEFS)LDFLAGS := @LDFLAGS@LIBS := @LIBS@ -L$(lib) -lcipeINSTALL := installall: pkcipeOBJS=proto.o negotiate.o main.o packet.o lock.o p_sha1.oSRCS=$(OBJS:.o=.c) pkcipe.h rsa-keygen.in Makefile.in README PKCIPE-Protocolpkcipe: $(OBJS) $(lib)/libcipe.a $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS)$(lib)/libcipe.a: $(lib)/*.[hc] $(MAKE) -C $(lib) libcipe.ainstall: all -mkdir -p $(bindir) $(sbindir) $(INSTALL) -m 755 rsa-keygen $(bindir) $(INSTALL) -m 755 pkcipe $(sbindir) [ -d /etc/cipe/pk ] || mkdir -p /etc/cipe/pk [ -d /var/run/cipe ] || mkdir -p /var/run/cipe chmod 700 /etc/cipe /etc/cipe/pk /var/run/cipe @if [ ! -f /etc/cipe/identity.priv ] ; then \ echo "*** Generating new identity (host) key ***" ;\ rsa-keygen /etc/cipe/identity ;\ ficlean: rm -f *.[oaisd] *.out core pkciperealclean distclean: clean rm -f *.tmp .tmp Makefile config.h rsa-keygen%.o: %.c $(CC) $(CPPFLAGS) $(CFLAGS) $(DEFS) $(CFLAGS_$*) -MD -c $<%.i: %.c $(CC) $(CPPFLAGS) $(CFLAGS) $(DEFS) $(CFLAGS_$*) -E -dD $< >$@%.s: %.c $(CC) $(CPPFLAGS) $(CFLAGS) $(DEFS) $(CFLAGS_$*) -fverbose-asm \ -o $@ -S $<.PHONY: dummy all install clean realclean distclean%.d: %.o.SECONDARY: %.dDEPS:=$(patsubst %.o,%.d,$(OBJS))ifeq (,$(findstring n,$(MAKEFLAGS)))ifeq (,$(filter clean dep% %.i %.s,$(MAKECMDGOALS)))-include $(DEPS)endifendif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -