tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Makefile.in (2200B)


      1 ## Makefile.in for ICU - tools/icuexportdata
      2 ## Copyright (C) 2021 and later: Unicode, Inc. and others.
      3 ## License & terms of use: http://www.unicode.org/copyright.html
      4 
      5 ## Source directory information
      6 srcdir = @srcdir@
      7 top_srcdir = @top_srcdir@
      8 
      9 top_builddir = ../..
     10 
     11 include $(top_builddir)/icudefs.mk
     12 
     13 ## Build directory information
     14 subdir = tools/icuexportdata
     15 
     16 TARGET_STUB_NAME = icuexportdata
     17 
     18 SECTION = 1
     19 
     20 MAN_FILES = $(TARGET_STUB_NAME).$(SECTION)
     21 
     22 ## Extra files to remove for 'make clean'
     23 CLEANFILES = *~ $(DEPS) $(MAN_FILES)
     24 
     25 ## Target information
     26 TARGET = $(BINDIR)/$(TARGET_STUB_NAME)$(EXEEXT)
     27 
     28 CPPFLAGS += -I$(srcdir) -I$(top_srcdir)/common -I$(srcdir)/../toolutil
     29 LIBS = $(LIBICUTOOLUTIL) $(LIBICUI18N) $(LIBICUUC) $(DEFAULT_LIBS) $(LIB_M)
     30 
     31 SOURCES = $(shell cat $(srcdir)/sources.txt)
     32 OBJECTS = $(patsubst %.cpp,%.o,$(patsubst %.c,%.o, $(SOURCES)))
     33 
     34 DEPS = $(OBJECTS:.o=.d)
     35 
     36 ## List of phony targets
     37 .PHONY : all all-local install install-local clean clean-local	\
     38 distclean distclean-local dist dist-local check check-local install-man
     39 
     40 ## Clear suffix list
     41 .SUFFIXES :
     42 
     43 ## List of standard targets
     44 all: all-local
     45 install: install-local
     46 clean: clean-local
     47 distclean : distclean-local
     48 dist: dist-local
     49 check: all check-local
     50 
     51 all-local: $(TARGET) $(MAN_FILES)
     52 
     53 install-local: all-local install-man
     54 $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
     55 $(INSTALL) $(TARGET) $(DESTDIR)$(bindir)
     56 
     57 install-man: $(MAN_FILES)
     58 $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
     59 $(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
     60 
     61 
     62 dist-local:
     63 
     64 clean-local:
     65 test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
     66 $(RMV) $(TARGET) $(OBJECTS)
     67 
     68 distclean-local: clean-local
     69 $(RMV) Makefile
     70 
     71 check-local: all-local
     72 
     73 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
     74 cd $(top_builddir) \
     75  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     76 
     77 $(TARGET) : $(OBJECTS)
     78 $(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
     79 $(POST_BUILD_STEP)
     80 
     81 
     82 %.$(SECTION): $(srcdir)/%.$(SECTION).in
     83 cd $(top_builddir) \
     84  && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     85 
     86 
     87 ifeq (,$(MAKECMDGOALS))
     88 -include $(DEPS)
     89 else
     90 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
     91 -include $(DEPS)
     92 endif
     93 endif