- Code/Resource
- Windows Develop
- Linux-Unix program
- Internet-Socket-Network
- Web Server
- Browser Client
- Ftp Server
- Ftp Client
- Browser Plugins
- Proxy Server
- Email Server
- Email Client
- WEB Mail
- Firewall-Security
- Telnet Server
- Telnet Client
- ICQ-IM-Chat
- Search Engine
- Sniffer Package capture
- Remote Control
- xml-soap-webservice
- P2P
- WEB(ASP,PHP,...)
- TCP/IP Stack
- SNMP
- Grid Computing
- SilverLight
- DNS
- Cluster Service
- Network Security
- Communication-Mobile
- Game Program
- Editor
- Multimedia program
- Graph program
- Compiler program
- Compress-Decompress algrithms
- Crypt_Decrypt algrithms
- Mathimatics-Numerical algorithms
- MultiLanguage
- Disk/Storage
- Java Develop
- assembly language
- Applications
- Other systems
- Database system
- Embeded-SCM Develop
- FlashMX/Flex
- source in ebook
- Delphi VCL
- OS Develop
- MiddleWare
- MPI
- MacOS develop
- LabView
- ELanguage
- Software/Tools
- E-Books
- Artical/Document
Makefile
Package: LINUX设备驱动程序第二版配套源码.rar [view]
Upload User: wudi5211
Upload Date: 2010-01-21
Package Size: 607k
Code Size: 1k
Category:
Embeded Linux
Development Platform:
C/C++
- # Comment/uncomment the following line to enable/disable debugging
- #DEBUG = y
- # This Makefile has been simplified as much as possible, by putting all
- # generic material, independent of this specific directory, into
- # ../Rules.make. Read that file for details
- TOPDIR := $(shell cd ..; pwd)
- include $(TOPDIR)/Rules.make
- ifeq ($(DEBUG),y)
- DEBFLAGS = -O -g -DSNULL_DEBUG # "-O" is needed to expand inlines
- else
- DEBFLAGS = -O2
- endif
- CFLAGS += $(DEBFLAGS) -I..
- TARGET = snull
- OBJS = $(TARGET).o
- SRC = $(TARGET).c
- all: .depend $(TARGET).o
- install:
- install -d $(INSTALLDIR)
- install -c $(TARGET).o $(INSTALLDIR)
- clean:
- rm -f *.o *~ core .depend
- depend .depend dep:
- $(CC) $(CFLAGS) -M $(TARGET).c > $@
- ifeq (.depend,$(wildcard .depend))
- include .depend
- endif