223 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			223 lines
		
	
	
		
			9.6 KiB
		
	
	
	
		
			Makefile
		
	
	
	
| # Makefile for the second extended file system utility functions
 | |
| #
 | |
| # Copyright (C) 1993 Remy Card (card@masi.ibp.fr)
 | |
| #
 | |
| # This file can be redistributed under the terms of the GNU General
 | |
| # Public License
 | |
| 
 | |
| srcdir = @srcdir@
 | |
| top_srcdir = @top_srcdir@
 | |
| VPATH = @srcdir@
 | |
| top_builddir = ../..
 | |
| my_dir = lib/e2p
 | |
| INSTALL = @INSTALL@
 | |
| MKDIR_P = @MKDIR_P@
 | |
| 
 | |
| @MCONFIG@
 | |
| 
 | |
| all::	e2p.pc
 | |
| 
 | |
| OBJS=		feature.o fgetflags.o fsetflags.o fgetversion.o fsetversion.o \
 | |
| 		getflags.o getversion.o hashstr.o iod.o ls.o ljs.o mntopts.o \
 | |
| 		parse_num.o pe.o pf.o ps.o setflags.o setversion.o uuid.o \
 | |
| 		ostype.o percent.o crypto_mode.o fgetproject.o fsetproject.o \
 | |
| 		encoding.o errcode.o
 | |
| 
 | |
| SRCS=		$(srcdir)/feature.c $(srcdir)/fgetflags.c \
 | |
| 		$(srcdir)/fsetflags.c $(srcdir)/fgetversion.c \
 | |
| 		$(srcdir)/fsetversion.c $(srcdir)/getflags.c \
 | |
| 		$(srcdir)/getversion.c $(srcdir)/hashstr.c $(srcdir)/iod.c \
 | |
| 		$(srcdir)/ls.c $(srcdir)/ljs.c $(srcdir)/mntopts.c \
 | |
| 		$(srcdir)/parse_num.c $(srcdir)/pe.c $(srcdir)/pf.c \
 | |
| 		$(srcdir)/ps.c $(srcdir)/setflags.c $(srcdir)/setversion.c \
 | |
| 		$(srcdir)/uuid.c $(srcdir)/ostype.c $(srcdir)/percent.c \
 | |
| 		$(srcdir)/crypto_mode.c $(srcdir)/fgetproject.c \
 | |
| 		$(srcdir)/fsetproject.c $(srcdir)/encoding.c \
 | |
| 		$(srcdir)/errcode.c
 | |
| 
 | |
| HFILES= e2p.h
 | |
| 
 | |
| LIBRARY= libe2p
 | |
| LIBDIR= e2p
 | |
| 
 | |
| ELF_VERSION = 2.3
 | |
| ELF_SO_VERSION = 2
 | |
| ELF_IMAGE = libe2p
 | |
| ELF_MYDIR = e2p
 | |
| ELF_INSTALL_DIR = $(root_libdir)
 | |
| ELF_OTHER_LIBS =
 | |
| 
 | |
| BSDLIB_VERSION = 2.1
 | |
| BSDLIB_IMAGE = libe2p
 | |
| BSDLIB_MYDIR = e2p
 | |
| BSDLIB_INSTALL_DIR = $(root_libdir)
 | |
| 
 | |
| @MAKEFILE_LIBRARY@
 | |
| @MAKEFILE_ELF@
 | |
| @MAKEFILE_BSDLIB@
 | |
| @MAKEFILE_PROFILE@
 | |
| 
 | |
| .c.o:
 | |
| 	$(E) "	CC $<"
 | |
| 	$(Q) $(CC) $(ALL_CFLAGS_STLIB) -c $< -o $@
 | |
| 	$(Q) $(CHECK_CMD) $(ALL_CFLAGS) $<
 | |
| 	$(Q) $(CPPCHECK_CMD) $(CPPFLAGS) $<
 | |
| @PROFILE_CMT@	$(Q) $(CC) $(ALL_CFLAGS_STLIB) -g -pg -o profiled/$*.o -c $<
 | |
| @ELF_CMT@	$(Q) $(CC) $(ALL_CFLAGS_SHLIB) -fPIC -shared -o elfshared/$*.o -c $<
 | |
| @BSDLIB_CMT@	$(Q) $(CC) $(ALL_CFLAGS_SHLIB) $(BSDLIB_PIC_FLAG) -o pic/$*.o -c $<
 | |
| 
 | |
| e2p.pc: $(srcdir)/e2p.pc.in $(top_builddir)/config.status
 | |
| 	$(E) "	CONFIG.STATUS $@"
 | |
| 	$(Q) cd $(top_builddir); CONFIG_FILES=lib/e2p/e2p.pc ./config.status
 | |
| 
 | |
| tst_ostype: $(srcdir)/ostype.c
 | |
| 	$(E) "	LD $@"
 | |
| 	$(Q) $(CC) -DTEST_PROGRAM -I$(top_srcdir)/lib -o tst_ostype \
 | |
| 		$(srcdir)/ostype.c $(ALL_CFLAGS) $(ALL_LDFLAGS)
 | |
| 
 | |
| tst_feature: $(srcdir)/feature.c
 | |
| 	$(E) "	LD $@"
 | |
| 	$(Q) $(CC) -DTEST_PROGRAM -I$(top_srcdir)/lib -o tst_feature \
 | |
| 		$(srcdir)/feature.c $(ALL_CFLAGS) $(ALL_LDFLAGS)
 | |
| 
 | |
| fullcheck check::	tst_ostype tst_feature
 | |
| 	./tst_ostype
 | |
| 	./tst_feature
 | |
| 
 | |
| installdirs::
 | |
| 	$(E) "	MKDIR_P $(libdir) $(includedir)/e2p"
 | |
| 	$(Q) $(MKDIR_P) $(DESTDIR)$(libdir) \
 | |
| 		$(DESTDIR)$(includedir)/e2p $(DESTDIR)$(pkgconfigdir)
 | |
| 
 | |
| install:: all installdirs 
 | |
| 	$(E) "	INSTALL_DATA $(libdir)/libe2p.a"
 | |
| 	$(Q) $(INSTALL_DATA) libe2p.a $(DESTDIR)$(libdir)/libe2p.a
 | |
| 	-$(Q) $(RANLIB) $(DESTDIR)$(libdir)/libe2p.a
 | |
| 	$(Q) $(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/libe2p.a
 | |
| 	$(Q) set -e; for i in $(HFILES); do \
 | |
| 	  echo "	INSTALL_DATA $(includedir)/e2p/$$i"; \
 | |
| 	  $(INSTALL_DATA) $(srcdir)/$$i $(DESTDIR)$(includedir)/e2p/$$i; \
 | |
| 	done
 | |
| 	$(E) "	INSTALL_DATA $(pkgconfigdir)/e2p.pc"
 | |
| 	$(Q) $(INSTALL_DATA) e2p.pc $(DESTDIR)$(pkgconfigdir)/e2p.pc
 | |
| 
 | |
| uninstall::
 | |
| 	$(RM) -f $(DESTDIR)$(libdir)/libe2p.a \
 | |
| 		$(DESTDIR)$(pkgconfigdir)/e2p.pc
 | |
| 	$(RM) -rf $(DESTDIR)$(includedir)/e2p
 | |
| 
 | |
| clean::
 | |
| 	$(RM) -f \#* *.s *.o *.a *~ *.bak core profiled/*
 | |
| 	$(RM) -f ../libe2p.a ../libe2p_p.a tst_ostype tst_feature e2p.pc
 | |
| 
 | |
| mostlyclean:: clean
 | |
| distclean:: clean
 | |
| 	$(RM) -f .depend Makefile e2p.pc \
 | |
| 		$(srcdir)/TAGS $(srcdir)/Makefile.in.old
 | |
| 
 | |
| $(OBJS): subdirs
 | |
| 
 | |
| # +++ Dependency line eater +++
 | |
| # 
 | |
| # Makefile dependencies follow.  This must be the last section in
 | |
| # the Makefile.in file
 | |
| #
 | |
| feature.o: $(srcdir)/feature.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2fs.h $(top_srcdir)/lib/ext2fs/ext3_extents.h \
 | |
|  $(top_srcdir)/lib/et/com_err.h $(top_srcdir)/lib/ext2fs/ext2_io.h \
 | |
|  $(top_builddir)/lib/ext2fs/ext2_err.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
 | |
|  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/ext2fs/kernel-jbd.h \
 | |
|  $(top_srcdir)/lib/ext2fs/jfs_compat.h $(top_srcdir)/lib/ext2fs/kernel-list.h \
 | |
|  $(top_srcdir)/lib/ext2fs/compiler.h
 | |
| fgetflags.o: $(srcdir)/fgetflags.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| fsetflags.o: $(srcdir)/fsetflags.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| fgetversion.o: $(srcdir)/fgetversion.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| fsetversion.o: $(srcdir)/fsetversion.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| getflags.o: $(srcdir)/getflags.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| getversion.o: $(srcdir)/getversion.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| hashstr.o: $(srcdir)/hashstr.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| iod.o: $(srcdir)/iod.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| ls.o: $(srcdir)/ls.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
 | |
|  $(top_srcdir)/lib/support/quotaio.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
 | |
|  $(top_srcdir)/lib/ext2fs/bitops.h $(top_srcdir)/lib/support/dqblk_v2.h \
 | |
|  $(top_srcdir)/lib/support/quotaio_tree.h
 | |
| ljs.o: $(srcdir)/ljs.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(top_srcdir)/lib/ext2fs/ext2_fs.h \
 | |
|  $(top_builddir)/lib/ext2fs/ext2_types.h $(top_srcdir)/lib/ext2fs/ext2fs.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext3_extents.h $(top_srcdir)/lib/et/com_err.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_io.h $(top_builddir)/lib/ext2fs/ext2_err.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_ext_attr.h $(top_srcdir)/lib/ext2fs/hashmap.h \
 | |
|  $(top_srcdir)/lib/ext2fs/bitops.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/kernel-jbd.h $(top_srcdir)/lib/ext2fs/jfs_compat.h \
 | |
|  $(top_srcdir)/lib/ext2fs/kernel-list.h $(top_srcdir)/lib/ext2fs/compiler.h
 | |
| mntopts.o: $(srcdir)/mntopts.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| parse_num.o: $(srcdir)/parse_num.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| pe.o: $(srcdir)/pe.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| pf.o: $(srcdir)/pf.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| ps.o: $(srcdir)/ps.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| setflags.o: $(srcdir)/setflags.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| setversion.o: $(srcdir)/setversion.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| uuid.o: $(srcdir)/uuid.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(top_builddir)/lib/ext2fs/ext2_types.h \
 | |
|  $(srcdir)/e2p.h $(top_srcdir)/lib/ext2fs/ext2_fs.h
 | |
| ostype.o: $(srcdir)/ostype.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| percent.o: $(srcdir)/percent.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| crypto_mode.o: $(srcdir)/crypto_mode.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| fgetproject.o: $(srcdir)/fgetproject.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/project.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
 | |
|  $(srcdir)/e2p.h
 | |
| fsetproject.o: $(srcdir)/fsetproject.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/project.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h \
 | |
|  $(srcdir)/e2p.h
 | |
| encoding.o: $(srcdir)/encoding.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h $(srcdir)/e2p.h \
 | |
|  $(top_srcdir)/lib/ext2fs/ext2_fs.h $(top_builddir)/lib/ext2fs/ext2_types.h
 | |
| errcode.o: $(srcdir)/errcode.c $(top_builddir)/lib/config.h \
 | |
|  $(top_builddir)/lib/dirpaths.h
 |