📄 makefile.in
字号:
# -*-Makefile-*- template for cipelib## 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.9 2000/12/30 23:02:08 olaf Exp $WARN := -Wmissing-prototypesCC := @CC@CFLAGS := @CFLAGS@ $(WARN)CPPFLAGS:= @CPPFLAGS@DEFS := @DEFS@ -DLIBRARY $(EXTRADEFS)all: libcipe.aOBJS := cipe_syslog.o debug.o dsprintf.o \ getaddr.o gethex.o hex.o hexdump.o hexstr.o parseopt.o \ retstatus.o setsig.o secchk.o sighand.o \ socks_errlist.o socks5_open.o socks5_cmd.o \ xread.o xwrite.o xwritev.oSRCS:=$(OBJS:.o=.c) cipelib.h Makefile.inlibcipe.a: $(OBJS) ar rcs $@ $(OBJS)install: : Nothing to install hereclean: rm -f *.[oaisd] *.out corerealclean distclean: clean rm -f *.tmp .tmp Makefile%.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: all 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 + -