#
# Makefile for the Linux Traffic Control layer.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
# Note 2! The CFLAGS definition is now in the main makefile...

O_TARGET := tc.o
TC_OBJS := tc_main.o tc_wfq.o cbq.o tc_class.o tc_queue.o tc_hash.o tc_cbq.o

ifdef CONFIG_NET_TC
  O_OBJS := $(TC_OBJS)
endif

include $(TOPDIR)/Rules.make

tar:
		tar -cvf /dev/f1 .

