summaryrefslogtreecommitdiff
path: root/libstore/Makefile
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-06-20 05:12:42 +0000
committerMiles Bader <miles@gnu.org>1997-06-20 05:12:42 +0000
commit9bc6b55d01451025b360cbff70807c060e61a031 (patch)
tree0756702ef2b22408bb6b28e71c63cd45cb5b852b /libstore/Makefile
parent93c7de89d826c06f9c4d4c02f95937bad21f14ba (diff)
(UNZIP_OBJS):
New variable. (UTILS_OBJS): Variable removed. (VPATH, CPPFLAGS): Search for stuff in ../exec for unzip junk. (SRCS): Remove storeread.c & storecat.c. Add typed.c, copy.c, and gunzip.c. (OBJS): Don't use $(UTILS_OBJS). Do use $(UNZIP_OBJS). (storeread, storecat): Rules removed. Update FSF address.
Diffstat (limited to 'libstore/Makefile')
-rw-r--r--libstore/Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/libstore/Makefile b/libstore/Makefile
index fa1cd738..8b940d4a 100644
--- a/libstore/Makefile
+++ b/libstore/Makefile
@@ -17,23 +17,23 @@
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
-# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
dir := libstore
makemode := library
libname = libstore
-SRCS = create.c derive.c make.c rdwr.c set.c device.c file.c stripe.c \
- storeread.c storecat.c enc.c encode.c decode.c clone.c argp.c \
- std.c kids.c zero.c flags.c open.c remap.c xinl.c task.c
+SRCS = create.c derive.c make.c rdwr.c set.c device.c file.c stripe.c \
+ enc.c encode.c decode.c clone.c argp.c std.c kids.c zero.c flags.c \
+ open.c remap.c xinl.c task.c typed.c copy.c gunzip.c
LCLHDRS=store.h
installhdrs=store.h
-UTIL_OBJS = storeread.o storecat.o
-OBJS = $(filter-out $(UTIL_OBJS), $(SRCS:.c=.o))
+UNZIP_OBJS = unzip.o inflate.o util.o
+OBJS = $(SRCS:.c=.o) $(UNZIP_OBJS)
-include ../Makeconf
+# Look for zip stuff
+VPATH += $(srcdir)/../exec
+CPPFLAGS += -I$(srcdir)/../exec
-storeread: libstore.so ../libshouldbeinlibc/libshouldbeinlibc.so
-storecat: libstore.so ../libshouldbeinlibc/libshouldbeinlibc.so
-storeargs: libstore.so ../libshouldbeinlibc/libshouldbeinlibc.so
+include ../Makeconf