diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-01-07 02:33:00 +0000 |
---|---|---|
committer | <ralf@linux-mips.org> | 1997-01-07 02:33:00 +0000 |
commit | beb116954b9b7f3bb56412b2494b562f02b864b1 (patch) | |
tree | 120e997879884e1b9d93b265221b939d2ef1ade1 /fs/minix/Makefile | |
parent | 908d4681a1dc3792ecafbe64265783a86c4cccb6 (diff) |
Import of Linux/MIPS 2.1.14
Diffstat (limited to 'fs/minix/Makefile')
-rw-r--r-- | fs/minix/Makefile | 27 |
1 files changed, 4 insertions, 23 deletions
diff --git a/fs/minix/Makefile b/fs/minix/Makefile index 82250ca47..60bb07d97 100644 --- a/fs/minix/Makefile +++ b/fs/minix/Makefile @@ -7,27 +7,8 @@ # # Note 2! The CFLAGS definitions are now in the main makefile... -.c.s: - $(CC) $(CFLAGS) -S $< -.c.o: - $(CC) $(CFLAGS) -c $< -.s.o: - $(AS) -o $*.o $< +O_TARGET := minix.o +O_OBJS := bitmap.o truncate.o namei.o inode.o file.o dir.o symlink.o fsync.o +M_OBJS := $(O_TARGET) -OBJS= bitmap.o truncate.o namei.o inode.o \ - file.o dir.o symlink.o fsync.o - -minix.o: $(OBJS) - $(LD) -r -o minix.o $(OBJS) - -dep: - $(CPP) -M *.c > .depend - -modules: minix.o - -# -# include a dependency file if one exists -# -ifeq (.depend,$(wildcard .depend)) -include .depend -endif +include $(TOPDIR)/Rules.make |