📄 makefile
字号:
#### Makefile for ISA ethernet drivers May 02, 2000#### $Log: Makefile,v $## Revision 1.3 2005/07/19 13:21:48 jnherder## Renamed src/lib/utils to src/lib/sysutil --- because of new src/lib/util#### Revision 1.2 2005/07/19 12:12:47 jnherder## Changed Makefiles: drivers are now installed in /usr/sbin.## TTY now gets SYS_EVENT message with sigset (e.g., SIGKMESS, SIGKSTOP).#### Revision 1.1 2005/06/29 10:16:46 beng## Import of dpeth 3c501/3c509b/.. ethernet driver by## Giovanni Falzoni <fgalzoni@inwind.it>.#### Revision 2.0 2005/06/26 16:16:46 lsodgf0## Initial revision for Minix 3.0.6#### $Id: Makefile,v 1.3 2005/07/19 13:21:48 jnherder Exp $## Programs, flags, etc.DRIVER = dpethdebug = 0CC = exec ccLD = $(CC)CPPFLAGS= -I.. -I/usr/include -Ddebug=$(debug)CFLAGS = -ws $(CPPFLAGS)LDFLAGS = -i -o $@SRCS = 3c501.c 3c509.c 3c503.c ne.c wd.c 8390.c devio.c netbuff.c dp.cOBJS = 3c501.o 3c509.o 3c503.o ne.o wd.o 8390.o devio.o netbuff.o dp.oLIBS = -lsysutil -lsys # -ltimers## Build rulesall build: $(DRIVER)$(DRIVER): $(OBJS) $(CC) $(OBJS) $(LIBS) $(LDFLAGS) install -S 4kw $(DRIVER)## Install with other driversinstall: /usr/sbin/$(DRIVER)/usr/sbin/$(DRIVER): $(DRIVER) install -o root -cs $? $@## Generate dependenciesdepend: /usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend## Clean directoryclean: @rm -f $(DRIVER) *.o *.BAKinclude .depend## end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -