|
|
1.1 root 1: CC =gcc
1.1.1.5 root 2: CFLAGS =-O -Wall -fstrength-reduce -fomit-frame-pointer \
1.1 root 3: -finline-functions -nostdinc -I../include
1.1.1.5 root 4: AS =as
5: AR =ar
6: LD =ld
1.1 root 7: CPP =gcc -E -nostdinc -I../include
8:
9: .c.o:
10: $(CC) $(CFLAGS) \
11: -c -o $*.o $<
12: .s.o:
13: $(AS) -o $*.o $<
14: .c.s:
15: $(CC) $(CFLAGS) \
16: -S -o $*.s $<
17:
1.1.1.5 root 18: OBJS = memory.o swap.o
1.1 root 19:
20: mm.o: $(OBJS)
21: $(LD) -r -o mm.o $(OBJS)
22:
23: clean:
24: rm -f core *.o *.a tmp_make
25: for i in *.c;do rm -f `basename $$i .c`.s;done
26:
27: dep:
28: sed '/\#\#\# Dependencies/q' < Makefile > tmp_make
29: (for i in *.c;do $(CPP) -M $$i;done) >> tmp_make
30: cp tmp_make Makefile
31:
32: ### Dependencies:
33: memory.o : memory.c ../include/signal.h ../include/sys/types.h \
1.1.1.3 root 34: ../include/asm/system.h ../include/linux/sched.h ../include/linux/head.h \
1.1.1.4 root 35: ../include/linux/fs.h ../include/linux/mm.h ../include/linux/kernel.h \
36: ../include/sys/param.h ../include/sys/time.h ../include/time.h \
37: ../include/sys/resource.h
1.1.1.5 root 38: swap.o : swap.c ../include/string.h ../include/errno.h \
39: ../include/linux/mm.h ../include/linux/fs.h ../include/sys/types.h \
40: ../include/linux/kernel.h ../include/signal.h ../include/sys/stat.h \
41: ../include/linux/sched.h ../include/linux/head.h ../include/sys/param.h \
42: ../include/sys/time.h ../include/time.h ../include/sys/resource.h
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.