|
|
1.1 root 1: #
2: # Makefile for the FREAX-kernel character device drivers.
3: #
4: # Note! Dependencies are done automagically by 'make dep', which also
5: # removes any old dependencies. DON'T put your own dependencies here
6: # unless it's something special (ie not a .c file).
7: #
8:
9: AR =gar
10: AS =gas
11: LD =gld
12: LDFLAGS =-s -x
13: CC =gcc
14: CFLAGS =-Wall -O -fstrength-reduce -fomit-frame-pointer -fcombine-regs \
15: -finline-functions -mstring-insns -nostdinc -I../../include
16: CPP =gcc -E -nostdinc -I../../include
17:
18: .c.s:
19: $(CC) $(CFLAGS) \
20: -S -o $*.s $<
21: .s.o:
22: $(AS) -c -o $*.o $<
23: .c.o:
24: $(CC) $(CFLAGS) \
25: -c -o $*.o $<
26:
27: OBJS = tty_io.o console.o keyboard.o serial.o rs_io.o
28:
29: chr_drv.a: $(OBJS)
30: $(AR) rcs chr_drv.a $(OBJS)
31: sync
32:
33: keyboard.s: keyboard.S ../../include/linux/config.h
34: $(CPP) -traditional keyboard.S -o keyboard.s
35:
36: clean:
37: rm -f core *.o *.a tmp_make keyboard.s
38: for i in *.c;do rm -f `basename $$i .c`.s;done
39:
40: dep:
41: sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
42: (for i in *.c;do echo -n `echo $$i | sed 's,\.c,\.s,'`" "; \
43: $(CPP) -M $$i;done) >> tmp_make
44: cp tmp_make Makefile
45:
46: ### Dependencies:
47: console.s console.o : console.c ../../include/linux/sched.h \
48: ../../include/linux/head.h ../../include/linux/fs.h \
49: ../../include/sys/types.h ../../include/linux/mm.h ../../include/signal.h \
50: ../../include/linux/tty.h ../../include/termios.h ../../include/asm/io.h \
51: ../../include/asm/system.h
52: serial.s serial.o : serial.c ../../include/linux/tty.h ../../include/termios.h \
53: ../../include/linux/sched.h ../../include/linux/head.h \
54: ../../include/linux/fs.h ../../include/sys/types.h ../../include/linux/mm.h \
55: ../../include/signal.h ../../include/asm/system.h ../../include/asm/io.h
56: tty_io.s tty_io.o : tty_io.c ../../include/ctype.h ../../include/errno.h \
57: ../../include/signal.h ../../include/sys/types.h \
58: ../../include/linux/sched.h ../../include/linux/head.h \
59: ../../include/linux/fs.h ../../include/linux/mm.h ../../include/linux/tty.h \
60: ../../include/termios.h ../../include/asm/segment.h \
61: ../../include/asm/system.h
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.