Created
February 6, 2015 05:30
-
-
Save lfender6445/5f581a24059811894b85 to your computer and use it in GitHub Desktop.
makefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SHELL = /bin/sh | |
| # V=0 quiet, V=1 verbose. other values don't work. | |
| V = 0 | |
| Q1 = $(V:1=) | |
| Q = $(Q1:0=@) | |
| ECHO1 = $(V:1=@:) | |
| ECHO = $(ECHO1:0=@echo) | |
| #### Start of system configuration section. #### | |
| srcdir = ./ext/hitimes/c | |
| topdir = /Users/lfender/.rubies/ruby-2.1.3/include/ruby-2.1.0 | |
| hdrdir = $(topdir) | |
| arch_hdrdir = /Users/lfender/.rubies/ruby-2.1.3/include/ruby-2.1.0/x86_64-darwin13.0 | |
| PATH_SEPARATOR = : | |
| VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby | |
| prefix = $(DESTDIR)/Users/lfender/.rubies/ruby-2.1.3 | |
| rubysitearchprefix = $(rubylibprefix)/$(sitearch) | |
| rubyarchprefix = $(rubylibprefix)/$(arch) | |
| rubylibprefix = $(libdir)/$(RUBY_BASE_NAME) | |
| exec_prefix = $(prefix) | |
| vendorarchhdrdir = $(vendorhdrdir)/$(sitearch) | |
| sitearchhdrdir = $(sitehdrdir)/$(sitearch) | |
| rubyarchhdrdir = $(rubyhdrdir)/$(arch) | |
| vendorhdrdir = $(rubyhdrdir)/vendor_ruby | |
| sitehdrdir = $(rubyhdrdir)/site_ruby | |
| rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME) | |
| vendorarchdir = $(vendorlibdir)/$(sitearch) | |
| vendorlibdir = $(vendordir)/$(ruby_version) | |
| vendordir = $(rubylibprefix)/vendor_ruby | |
| sitearchdir = $(sitelibdir)/$(sitearch) | |
| sitelibdir = $(sitedir)/$(ruby_version) | |
| sitedir = $(rubylibprefix)/site_ruby | |
| rubyarchdir = $(rubylibdir)/$(arch) | |
| rubylibdir = $(rubylibprefix)/$(ruby_version) | |
| sitearchincludedir = $(includedir)/$(sitearch) | |
| archincludedir = $(includedir)/$(arch) | |
| sitearchlibdir = $(libdir)/$(sitearch) | |
| archlibdir = $(libdir)/$(arch) | |
| ridir = $(datarootdir)/$(RI_BASE_NAME) | |
| mandir = $(datarootdir)/man | |
| localedir = $(datarootdir)/locale | |
| libdir = $(exec_prefix)/lib | |
| psdir = $(docdir) | |
| pdfdir = $(docdir) | |
| dvidir = $(docdir) | |
| htmldir = $(docdir) | |
| infodir = $(datarootdir)/info | |
| docdir = $(datarootdir)/doc/$(PACKAGE) | |
| oldincludedir = $(DESTDIR)/usr/include | |
| includedir = $(prefix)/include | |
| localstatedir = $(prefix)/var | |
| sharedstatedir = $(prefix)/com | |
| sysconfdir = $(prefix)/etc | |
| datadir = $(datarootdir) | |
| datarootdir = $(prefix)/share | |
| libexecdir = $(exec_prefix)/libexec | |
| sbindir = $(exec_prefix)/sbin | |
| bindir = $(exec_prefix)/bin | |
| archdir = $(rubyarchdir) | |
| CC = gcc-4.2 | |
| CXX = g++ | |
| LIBRUBY = $(LIBRUBY_A) | |
| LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a | |
| LIBRUBYARG_SHARED = | |
| LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static -framework CoreFoundation | |
| empty = | |
| OUTFLAG = -o $(empty) | |
| COUTFLAG = -o $(empty) | |
| RUBY_EXTCONF_H = | |
| cflags = $(optflags) $(debugflags) $(warnflags) | |
| optflags = -O3 -fno-fast-math | |
| debugflags = -ggdb3 | |
| warnflags = -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wshorten-64-to-32 -Wimplicit-function-declaration -Wextra-tokens | |
| CCDLFLAGS = -fno-common | |
| CFLAGS = $(CCDLFLAGS) $(cflags) -pipe -DUSE_INSTANT_OSX=1 -Wall $(ARCH_FLAG) | |
| INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir) | |
| DEFS = | |
| CPPFLAGS = -I/usr/local/opt/openssl/include -I/usr/local/opt/readline/include -I/usr/local/opt/libyaml/include -I/usr/local/opt/gdbm/include -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT $(DEFS) $(cppflags) | |
| CXXFLAGS = $(CCDLFLAGS) $(cxxflags) $(ARCH_FLAG) | |
| ldflags = -L. -fstack-protector -L/usr/local/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/gdbm/lib -framework CoreServices | |
| dldflags = -Wl,-undefined,dynamic_lookup -Wl,-multiply_defined,suppress -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/gdbm/lib | |
| ARCH_FLAG = | |
| DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG) | |
| LDSHARED = $(CC) -dynamic -bundle | |
| LDSHAREDXX = $(CXX) -dynamic -bundle | |
| AR = ar | |
| EXEEXT = | |
| RUBY_INSTALL_NAME = ruby | |
| RUBY_SO_NAME = ruby | |
| RUBYW_INSTALL_NAME = | |
| RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version) | |
| RUBYW_BASE_NAME = rubyw | |
| RUBY_BASE_NAME = ruby | |
| arch = x86_64-darwin13.0 | |
| sitearch = $(arch) | |
| ruby_version = 2.1.0 | |
| ruby = $(bindir)/ruby | |
| RUBY = $(ruby) | |
| ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h | |
| RM = rm -f | |
| RM_RF = $(RUBY) -run -e rm -- -rf | |
| RMDIRS = rmdir -p | |
| MAKEDIRS = mkdir -p | |
| INSTALL = /usr/bin/install -c | |
| INSTALL_PROG = $(INSTALL) -m 0755 | |
| INSTALL_DATA = $(INSTALL) -m 644 | |
| COPY = cp | |
| TOUCH = exit > | |
| #### End of system configuration section. #### | |
| preload = | |
| libpath = . $(libdir) /usr/local/opt/openssl/lib /usr/local/opt/readline/lib /usr/local/opt/libyaml/lib /usr/local/opt/gdbm/lib | |
| LIBPATH = -L. -L$(libdir) -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib -L/usr/local/opt/libyaml/lib -L/usr/local/opt/gdbm/lib | |
| DEFFILE = | |
| CLEANFILES = mkmf.log | |
| DISTCLEANFILES = | |
| DISTCLEANDIRS = | |
| extout = | |
| extout_prefix = | |
| target_prefix = /hitimes/2.1 | |
| LOCAL_LIBS = | |
| LIBS = -lpthread -lgmp -ldl -lobjc | |
| ORIG_SRCS = hitimes.c hitimes_instant_clock_gettime.c hitimes_instant_osx.c hitimes_instant_windows.c hitimes_interval.c hitimes_stats.c | |
| SRCS = $(ORIG_SRCS) | |
| OBJS = hitimes.o hitimes_instant_clock_gettime.o hitimes_instant_osx.o hitimes_instant_windows.o hitimes_interval.o hitimes_stats.o | |
| HDRS = $(srcdir)/hitimes_interval.h $(srcdir)/hitimes_stats.h | |
| TARGET = hitimes | |
| TARGET_NAME = hitimes | |
| TARGET_ENTRY = Init_$(TARGET_NAME) | |
| DLLIB = $(TARGET).bundle | |
| EXTSTATIC = | |
| STATIC_LIB = | |
| TIMESTAMP_DIR = . | |
| BINDIR = $(bindir) | |
| RUBYCOMMONDIR = $(sitedir)$(target_prefix) | |
| RUBYLIBDIR = $(sitelibdir)$(target_prefix) | |
| RUBYARCHDIR = $(sitearchdir)$(target_prefix) | |
| HDRDIR = $(rubyhdrdir)/ruby$(target_prefix) | |
| ARCHHDRDIR = $(rubyhdrdir)/$(arch)/ruby$(target_prefix) | |
| TARGET_SO = $(DLLIB) | |
| CLEANLIBS = $(TARGET).bundle | |
| CLEANOBJS = *.o *.bak | |
| all: $(DLLIB) | |
| static: $(STATIC_LIB) | |
| .PHONY: all install static install-so install-rb | |
| .PHONY: clean clean-so clean-static clean-rb | |
| clean-static:: | |
| clean-rb-default:: | |
| clean-rb:: | |
| clean-so:: | |
| clean: clean-so clean-static clean-rb-default clean-rb | |
| -$(Q)$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time | |
| distclean-rb-default:: | |
| distclean-rb:: | |
| distclean-so:: | |
| distclean-static:: | |
| distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb | |
| -$(Q)$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log | |
| -$(Q)$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES) | |
| -$(Q)$(RMDIRS) $(DISTCLEANDIRS) 2> /dev/null || true | |
| realclean: distclean | |
| install: install-so install-rb | |
| install-so: $(DLLIB) $(TIMESTAMP_DIR)/.RUBYARCHDIR.-.hitimes.-.2.1.time | |
| $(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR) | |
| clean-static:: | |
| -$(Q)$(RM) $(STATIC_LIB) | |
| install-rb: pre-install-rb install-rb-default | |
| install-rb-default: pre-install-rb-default | |
| pre-install-rb: Makefile | |
| pre-install-rb-default: Makefile | |
| pre-install-rb-default: | |
| $(ECHO) installing default hitimes libraries | |
| $(TIMESTAMP_DIR)/.RUBYARCHDIR.-.hitimes.-.2.1.time: | |
| $(Q) $(MAKEDIRS) $(@D) $(RUBYARCHDIR) | |
| $(Q) $(TOUCH) $@ | |
| site-install: site-install-so site-install-rb | |
| site-install-so: install-so | |
| site-install-rb: install-rb | |
| .SUFFIXES: .c .m .cc .mm .cxx .cpp .C .o | |
| .cc.o: | |
| $(ECHO) compiling $(<) | |
| $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $< | |
| .mm.o: | |
| $(ECHO) compiling $(<) | |
| $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $< | |
| .cxx.o: | |
| $(ECHO) compiling $(<) | |
| $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $< | |
| .cpp.o: | |
| $(ECHO) compiling $(<) | |
| $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $< | |
| .C.o: | |
| $(ECHO) compiling $(<) | |
| $(Q) $(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(COUTFLAG)$@ -c $< | |
| .c.o: | |
| $(ECHO) compiling $(<) | |
| $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $< | |
| .m.o: | |
| $(ECHO) compiling $(<) | |
| $(Q) $(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) $(COUTFLAG)$@ -c $< | |
| $(DLLIB): $(OBJS) Makefile | |
| $(ECHO) linking shared-object hitimes/2.1/$(DLLIB) | |
| -$(Q)$(RM) $(@) | |
| $(Q) $(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS) | |
| $(Q) $(POSTLINK) | |
| $(OBJS): $(HDRS) $(ruby_headers) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment