diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2007-03-28 19:11:42 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2007-03-28 19:11:42 +0000 |
commit | 2ab9f689f7a1938827f17a914af9751ff487fc96 (patch) | |
tree | 75f6f1e9079fa6e9262370df5185d5f504428a05 /fatfs | |
parent | ec71a94087af0a1c349ce052e48a656c120ad7a5 (diff) |
2007-03-28 Thomas Schwinge <tschwinge@gnu.org>
* Makefile (fatfs.static): New target.
Diffstat (limited to 'fatfs')
-rw-r--r-- | fatfs/ChangeLog | 2 | ||||
-rw-r--r-- | fatfs/Makefile | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/fatfs/ChangeLog b/fatfs/ChangeLog index 35874f73..ef878767 100644 --- a/fatfs/ChangeLog +++ b/fatfs/ChangeLog @@ -1,5 +1,7 @@ 2007-03-28 Thomas Schwinge <tschwinge@gnu.org> + * Makefile (fatfs.static): New target. + * main.c (diskfs_readonly): Remove variable. (main): Set `diskfs_readonly' and `diskfs_hard_readonly' to one. diff --git a/fatfs/Makefile b/fatfs/Makefile index 7bdff95d..908df3d4 100644 --- a/fatfs/Makefile +++ b/fatfs/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1997, 2003 Free Software Foundation +# Copyright (C) 1997, 2003, 2007 Free Software Foundation # Modified by Marcus Brinkmann, 2000-05-05 # # This program is free software; you can redistribute it and/or @@ -27,3 +27,5 @@ OBJS = $(SRCS:.c=.o) HURDLIBS = diskfs iohelp fshelp store pager ports threads ihash shouldbeinlibc include ../Makeconf + +fatfs.static: $(boot-store-types:%=../libstore/libstore_%.a) |