|
|
| File: [Development] / linux-2.4-xfs / drivers / usb / gadget / Makefile (download)
Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 10 months ago) by cattelan
Initial Import 2.4.24pre2 |
# # Makefile for USB peripheral controller and gadget drivers # for kbuild 2.4 # # for static linking O_TARGET := built-in.o list-multi := g_zero.o g_ether.o obj-$(CONFIG_USB_NET2280) += net2280.o # only one of these may be statically linked ... controller-$(CONFIG_USB_NET2280) += net2280.o # ... and only one of these, too; kbuild/kconfig don't help though. g_zero-objs := zero.o usbstring.o obj-$(CONFIG_USB_ZERO) += g_zero.o g_ether-objs := ether.o usbstring.o obj-$(CONFIG_USB_ETH) += g_ether.o export-objs := $(controller-y) $(controller-m) include $(TOPDIR)/Rules.make g_zero.o: $(g_zero-objs) $(LD) -r -o $@ $(g_zero-objs) g_ether.o: $(g_ether-objs) $(LD) -r -o $@ $(g_ether-objs)