| # 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/uuid |
| INSTALL = @INSTALL@ |
| |
| @MCONFIG@ |
| |
| all:: |
| |
| SMANPAGES= libuuid.3 uuid_clear.3 uuid_compare.3 uuid_copy.3 \ |
| uuid_generate.3 uuid_is_null.3 uuid_parse.3 \ |
| uuid_time.3 uuid_unparse.3 |
| |
| OBJS= clear.o \ |
| compare.o \ |
| copy.o \ |
| gen_uuid.o \ |
| isnull.o \ |
| pack.o \ |
| parse.o \ |
| unpack.o \ |
| unparse.o \ |
| uuid_time.o |
| |
| SRCS= $(srcdir)/clear.c \ |
| $(srcdir)/compare.c \ |
| $(srcdir)/copy.c \ |
| $(srcdir)/gen_uuid.c \ |
| $(srcdir)/isnull.c \ |
| $(srcdir)/pack.c \ |
| $(srcdir)/parse.c \ |
| $(srcdir)/unpack.c \ |
| $(srcdir)/unparse.c \ |
| $(srcdir)/uuid_time.c |
| |
| LIBRARY= libuuid |
| LIBDIR= uuid |
| |
| DLL_ADDRESS = 0x67900000 |
| DLL_JUMPSIZE = 0x1000 |
| DLL_GOTSIZE = 0x1000 |
| DLL_VERSION = 0.1 |
| DLL_IMAGE = libuuid |
| DLL_STUB = libuuid |
| DLL_MYDIR = uuid |
| DLL_INSTALL_DIR = $(root_libdir) |
| |
| ELF_VERSION = 1.2 |
| ELF_SO_VERSION = 1 |
| ELF_IMAGE = libuuid |
| ELF_MYDIR = uuid |
| ELF_INSTALL_DIR = $(root_libdir) |
| ELF_OTHER_LIBS = -lc |
| |
| BSDLIB_VERSION = 1.1 |
| BSDLIB_IMAGE = libuuid |
| BSDLIB_MYDIR = uuid |
| BSDLIB_INSTALL_DIR = $(root_libdir) |
| |
| @MAKEFILE_LIBRARY@ |
| @MAKEFILE_DLL@ |
| @MAKEFILE_ELF@ |
| @MAKEFILE_BSDLIB@ |
| @MAKEFILE_PROFILE@ |
| @MAKEFILE_CHECKER@ |
| |
| .c.o: |
| $(CC) $(ALL_CFLAGS) -c $< -o $@ |
| @PROFILE_CMT@ $(CC) $(ALL_CFLAGS) -g -pg -o profiled/$*.o -c $< |
| @CHECKER_CMT@ $(CC) $(ALL_CFLAGS) -checker -g -o checker/$*.o -c $< |
| @DLL_CMT@ (export JUMP_DIR=`pwd`/jump; $(CC) -B$(JUMP_PREFIX) $(ALL_CFLAGS) \ |
| @DLL_CMT@ -o jump/$*.o -c $<) |
| @ELF_CMT@ $(CC) $(ALL_CFLAGS) -fPIC -o elfshared/$*.o -c $< |
| @BSDLIB_CMT@ $(CC) $(ALL_CFLAGS) -fpic -o pic/$*.o -c $< |
| |
| all:: tst_uuid uuid_time $(SMANPAGES) |
| |
| tst_uuid.o: $(srcdir)/tst_uuid.c |
| $(CC) $(ALL_CFLAGS) -c $(srcdir)/tst_uuid.c -o tst_uuid.o |
| |
| tst_uuid: tst_uuid.o $(LIBUUID) |
| $(CC) $(ALL_LDFLAGS) -o tst_uuid tst_uuid.o $(LIBUUID) |
| |
| uuid_time: $(srcdir)/uuid_time.c $(LIBUUID) |
| $(CC) $(ALL_CFLAGS) -DDEBUG $(srcdir)/uuid_time.c -o uuid_time $(LIBUUID) |
| |
| libuuid.3: $(DEP_SUBSTITUTE) $(srcdir)/libuuid.3.in |
| $(SUBSTITUTE) $(srcdir)/libuuid.3.in libuuid.3 |
| |
| uuid_clear.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_clear.3.in |
| $(SUBSTITUTE) $(srcdir)/uuid_clear.3.in uuid_clear.3 |
| |
| uuid_compare.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_compare.3.in |
| $(SUBSTITUTE) $(srcdir)/uuid_compare.3.in uuid_compare.3 |
| |
| uuid_copy.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_copy.3.in |
| $(SUBSTITUTE) $(srcdir)/uuid_copy.3.in uuid_copy.3 |
| |
| uuid_generate.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_generate.3.in |
| $(SUBSTITUTE) $(srcdir)/uuid_generate.3.in uuid_generate.3 |
| |
| uuid_is_null.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_is_null.3.in |
| $(SUBSTITUTE) $(srcdir)/uuid_is_null.3.in uuid_is_null.3 |
| |
| uuid_parse.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_parse.3.in |
| $(SUBSTITUTE) $(srcdir)/uuid_parse.3.in uuid_parse.3 |
| |
| uuid_time.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_time.3.in |
| $(SUBSTITUTE) $(srcdir)/uuid_time.3.in uuid_time.3 |
| |
| uuid_unparse.3: $(DEP_SUBSTITUTE) $(srcdir)/uuid_unparse.3.in |
| $(SUBSTITUTE) $(srcdir)/uuid_unparse.3.in uuid_unparse.3 |
| |
| installdirs:: |
| $(top_srcdir)/mkinstalldirs $(DESTDIR)$(libdir) \ |
| $(DESTDIR)$(includedir)/uuid $(DESTDIR)$(man3dir) |
| |
| install:: all installdirs |
| $(INSTALL_DATA) libuuid.a $(DESTDIR)$(libdir)/libuuid.a |
| $(CHMOD) 644 $(DESTDIR)$(libdir)/libuuid.a |
| -$(RANLIB) $(DESTDIR)$(libdir)/libuuid.a |
| $(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/libuuid.a |
| $(INSTALL_DATA) $(srcdir)/uuid.h $(DESTDIR)$(includedir)/uuid/uuid.h |
| for i in $(SMANPAGES); do \ |
| $(INSTALL_DATA) $$i $(DESTDIR)$(man3dir)/$$i; \ |
| done |
| |
| uninstall:: |
| $(RM) -f $(DESTDIR)$(libdir)/libuuid.a |
| for i in $(SMANPAGES); do \ |
| $(RM) -f $(DESTDIR)$(man3dir)/$$i; \ |
| done |
| |
| clean:: |
| $(RM) -f \#* *.s *.o *.a *~ *.bak core profiled/* checker/* |
| $(RM) -f ../libuuid.a ../libuuid_p.a tst_uuid uuid_time $(SMANPAGES) |
| |
| check:: tst_uuid |
| LD_LIBRARY_PATH=$(LIB) ./tst_uuid |
| |
| mostlyclean:: clean |
| distclean:: clean |
| $(RM) -f .depend Makefile |
| |
| # +++ Dependency line eater +++ |
| # |
| # Makefile dependencies follow. This must be the last section in |
| # the Makefile.in file |
| # |
| clear.o: $(srcdir)/clear.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| compare.o: $(srcdir)/compare.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| copy.o: $(srcdir)/copy.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| gen_uuid.o: $(srcdir)/gen_uuid.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| isnull.o: $(srcdir)/isnull.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| pack.o: $(srcdir)/pack.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| parse.o: $(srcdir)/parse.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| unpack.o: $(srcdir)/unpack.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| unparse.o: $(srcdir)/unparse.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |
| uuid_time.o: $(srcdir)/uuid_time.c $(srcdir)/uuidP.h $(srcdir)/uuid.h |