tor-browser

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

Makefile.in (2266B)


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