summaryrefslogtreecommitdiffstats
path: root/net/802/Makefile
blob: a81249c9160918f22ed4ff3df1c33241231eb618 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#
# Makefile for the Linux 802.x protocol layers.
#
# 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...

.c.o:
	$(CC) $(CFLAGS) -c $<
.s.o:
	$(AS) -o $*.o $<
.c.s:
	$(CC) $(CFLAGS) -S $<


OBJS	:= p8023.o

ifdef CONFIG_TR

OBJS	:= $(OBJS) tr.o

endif

ifdef CONFIG_IPX

OBJS	:= $(OBJS) p8022.o psnap.o

endif

ifdef CONFIG_ATALK
ifndef CONFIG_IPX

OBJS	:= $(OBJS) p8022.o psnap.o

endif
endif

802.o:		$(OBJS)
		$(LD) -r -o 802.o $(OBJS)


dep:
		$(CPP) -M *.c > .depend

tar:
		tar -cvf /dev/f1 .

#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif