makefile.in

来自「PPPoE在Linux上的源代码」· IN 代码 · 共 41 行

IN
41
字号
# Generated automatically from Makefile.in by configure.
# $Id: Makefile.in,v 1.3 2002/04/09 17:28:40 dfs Exp $
#
# Makefile for event-handling library
#
# Copyright 2002 Roaring Penguin Software Inc.
#
# This software may be distributed according to the terms of the GNU
# General Public License, version 2 or (at your option) any later version.
# LIC: GPL

OBJS=event.o event_tcp.o hash.o event_sig.o
SRCS=$(OBJS:.o=.c)
HDRS=event.h event_tcp.h eventpriv.h hash.h
CFLAGS=@CFLAGS@ -I..

all: libevent.a

libevent.a: $(OBJS)
	rm -f libevent.a
	ar -cq libevent.a $(OBJS)
	@RANLIB@ libevent.a

event.o: event.c $(HDRS)
	gcc $(CFLAGS) -c -o event.o event.c

hash.o: hash.c $(HDRS)
	gcc $(CFLAGS) -c -o hash.o hash.c

event_sig.o: event_sig.c $(HDRS)
	gcc $(CFLAGS) -c -o event_sig.o event_sig.c

event_tcp.o: event_tcp.c $(HDRS)
	gcc $(CFLAGS) -c -o event_tcp.o event_tcp.c

clean: FORCE
	rm -f *.a *.o *~

FORCE:

.phony: FORCE

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?