|
|
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 = math_emulate.o
28:
29: math.a: $(OBJS)
30: $(AR) rcs math.a $(OBJS)
31: sync
32:
33: clean:
34: rm -f core *.o *.a tmp_make
35: for i in *.c;do rm -f `basename $$i .c`.s;done
36:
37: dep:
38: sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
39: (for i in *.c;do echo -n `echo $$i | sed 's,\.c,\.s,'`" "; \
40: $(CPP) -M $$i;done) >> tmp_make
41: cp tmp_make Makefile
42:
43: ### Dependencies:
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.