Home | History | Annotate | Download | only in genccode
      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 OBJECTS = genccode.o
     36 
     37 DEPS = $(OBJECTS:.o=.d)
     38 
     39 ## List of phony targets
     40 .PHONY : all all-local install install-local clean clean-local	\
     41 distclean distclean-local dist dist-local check check-local install-man
     42 
     43 ## Clear suffix list
     44 .SUFFIXES :
     45 
     46 ## List of standard targets
     47 all: all-local
     48 install: install-local
     49 clean: clean-local
     50 distclean : distclean-local
     51 dist: dist-local
     52 check: all check-local
     53 
     54 all-local: $(TARGET) $(MAN_FILES)
     55 
     56 install-local: all-local install-man
     57 	$(MKINSTALLDIRS) $(DESTDIR)$(sbindir)
     58 	$(INSTALL) $(TARGET) $(DESTDIR)$(sbindir)
     59 
     60 install-man: $(MAN_FILES)
     61 	$(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man$(SECTION)
     62 	$(INSTALL_DATA) $? $(DESTDIR)$(mandir)/man$(SECTION)
     63 
     64 dist-local:
     65 
     66 clean-local:
     67 	test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES)
     68 	$(RMV) $(TARGET) $(OBJECTS)
     69 
     70 distclean-local: clean-local
     71 	$(RMV) Makefile
     72 
     73 check-local: all-local
     74 
     75 Makefile: $(srcdir)/Makefile.in  $(top_builddir)/config.status
     76 	cd $(top_builddir) \
     77 	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     78 
     79 $(TARGET) : $(OBJECTS)
     80 	$(LINK.cc) $(OUTOPT)$@ $^ $(LIBS)
     81 	$(POST_BUILD_STEP)
     82 
     83 
     84 %.$(SECTION): $(srcdir)/%.$(SECTION).in
     85 	cd $(top_builddir) \
     86 	 && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
     87 
     88 
     89 ifeq (,$(MAKECMDGOALS))
     90 -include $(DEPS)
     91 else
     92 ifneq ($(patsubst %clean,,$(MAKECMDGOALS)),)
     93 -include $(DEPS)
     94 endif
     95 endif
     96 
     97