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/sysv/Makefile | |
parent | 908d4681a1dc3792ecafbe64265783a86c4cccb6 (diff) |
Import of Linux/MIPS 2.1.14
Diffstat (limited to 'fs/sysv/Makefile')
-rw-r--r-- | fs/sysv/Makefile | 29 |
1 files changed, 5 insertions, 24 deletions
diff --git a/fs/sysv/Makefile b/fs/sysv/Makefile index 4ef1cddcd..b5801e994 100644 --- a/fs/sysv/Makefile +++ b/fs/sysv/Makefile @@ -7,28 +7,9 @@ # # 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 := sysv.o +O_OBJS := ialloc.o balloc.o inode.o file.o dir.o symlink.o namei.o \ + fsync.o truncate.o +M_OBJS := $(O_TARGET) -OBJS= ialloc.o balloc.o inode.o file.o dir.o symlink.o namei.o \ - fsync.o truncate.o - -sysv.o: $(OBJS) - $(LD) -r -o sysv.o $(OBJS) - -modules: sysv.o - ln -sf ../fs/sysv/sysv.o $(TOPDIR)/modules - -dep: - $(CPP) -M *.c > .depend - -# -# include a dependency file if one exists -# -ifeq (.depend,$(wildcard .depend)) -include .depend -endif +include $(TOPDIR)/Rules.make |