diff options
author | Miles Bader <miles@gnu.org> | 1995-08-24 14:34:43 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-24 14:34:43 +0000 |
commit | 8c00b543ade74bf6d5322a86c98b2e6058851699 (patch) | |
tree | 3574a71bb4501ffac9a8ea1ae8126964642400bc /ext2fs/Makefile | |
parent | b876b1425194f7b43aa23b4ef4eea14a689b2105 (diff) |
(LCLHDRS): Put all dependencies here.
(HURDLIBS): Removed.
Remove rules for error.o.
Diffstat (limited to 'ext2fs/Makefile')
-rw-r--r-- | ext2fs/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/ext2fs/Makefile b/ext2fs/Makefile index 9fa8b878..c3bf113f 100644 --- a/ext2fs/Makefile +++ b/ext2fs/Makefile @@ -19,20 +19,12 @@ dir := ext2fs makemode := server +target = ext2fs SRCS = balloc.c bitmap.c devio.c dir.c ext2fs.c getblk.c hyper.c ialloc.c \ inode.c pager.c pokel.c truncate.c -OBJS = $(SRCS:.c=.o) error.o +OBJS = $(SRCS:.c=.o) LCLHDRS = ext2fs.h ext2_fs.h ext2_fs_i.h -REMHDRS = ../hurd/diskfs.h ../hurd/ports.h ../hurd/pager.h\ - ../hurd/ioserver.h ../hurd/fshelp.h -HURDLIBS = libdiskfs libports libpager libioserver libfshelp libthreads \ - libihash -target = ext2fs -CPPFLAGS += -I../lib -CPPFLAGS += $(CPPFLAGS-$(notdir $<)) -vpath %.c ../lib +ext2fs: $(OBJS) ../libdiskfs/libdiskfs.a ../libports/libports.a ../libpager/libpager.a ../libioserver/libioserver.a ../libfshelp/libfshelp.a ../libthreads/libthreads.a ../libihash/libihash.a ../libshouldbeinlibc/libshouldbeinlibc.a include ../Makeconf - -CPPFLAGS-error.c = -Dprogram_name=program_invocation_name -DHAVE_VPRINTF -DSTDC_HEADERS -DHAVE_STRERROR |