ICU-1220 changed Makefile not to install while doing make :)
X-SVN-Rev: 5869
This commit is contained in:
parent
8449acf167
commit
af3d831eaf
@ -48,7 +48,7 @@ DEPS = $(OBJECTS:.o=.d)
|
|||||||
|
|
||||||
## List of phony targets
|
## List of phony targets
|
||||||
.PHONY : all all-local install install-local clean clean-local \
|
.PHONY : all all-local install install-local clean clean-local \
|
||||||
distclean distclean-local dist dist-local check check-local resfiles resinst
|
distclean distclean-local dist dist-local check check-local resfiles package-resfiles install-resfiles
|
||||||
|
|
||||||
## Clear suffix list
|
## Clear suffix list
|
||||||
.SUFFIXES :
|
.SUFFIXES :
|
||||||
@ -63,7 +63,7 @@ check: check-local
|
|||||||
|
|
||||||
all-local: $(TARGET) resfiles
|
all-local: $(TARGET) resfiles
|
||||||
|
|
||||||
install-local: all-local install-target
|
install-local: all-local install-target install-resfiles
|
||||||
|
|
||||||
install-target: all-local
|
install-target: all-local
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
|
$(MKINSTALLDIRS) $(DESTDIR)$(bindir)
|
||||||
@ -72,11 +72,12 @@ install-target: all-local
|
|||||||
dist-local:
|
dist-local:
|
||||||
|
|
||||||
clean-local:
|
clean-local:
|
||||||
test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) $(RESFILES)
|
test -z "$(CLEANFILES)" || $(RMV) $(CLEANFILES) $(RESFILES)
|
||||||
rm -f $(OBJECTS) $(TARGET)
|
$(RMV) $(OBJECTS) $(TARGET)
|
||||||
|
$(RMV) $(RESDIR)
|
||||||
|
|
||||||
distclean-local: clean-local
|
distclean-local: clean-local
|
||||||
rm -f Makefile $(DEPS) $(RESDIR)
|
$(RMV) Makefile $(DEPS)
|
||||||
|
|
||||||
check-local:
|
check-local:
|
||||||
|
|
||||||
@ -87,7 +88,10 @@ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|||||||
$(TARGET) : $(OBJECTS)
|
$(TARGET) : $(OBJECTS)
|
||||||
$(LINK.c) -o $@ $^ $(LIBS)
|
$(LINK.c) -o $@ $^ $(LIBS)
|
||||||
|
|
||||||
resfiles: $(RESFILES) resinst
|
resfiles: $(RESFILES) package-resfiles
|
||||||
|
|
||||||
|
package-resfiles: $(RESDIR)/$(RESDIR).lst
|
||||||
|
$(INVOKE) $(top_builddir)/tools/pkgdata/pkgdata -p $(RESDIR) -O $(top_builddir)/tools/pkgdata/icupkg.inc -m common -d uconvmsg -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
|
||||||
|
|
||||||
$(RESDIR)/$(RESDIR).lst: Makefile $(srcdir)/resfiles.mk
|
$(RESDIR)/$(RESDIR).lst: Makefile $(srcdir)/resfiles.mk
|
||||||
@$(MKINSTALLDIRS) $(RESDIR)
|
@$(MKINSTALLDIRS) $(RESDIR)
|
||||||
@ -96,9 +100,9 @@ $(RESDIR)/$(RESDIR).lst: Makefile $(srcdir)/resfiles.mk
|
|||||||
echo `pwd`/$$file >> $@; \
|
echo `pwd`/$$file >> $@; \
|
||||||
done;
|
done;
|
||||||
|
|
||||||
resinst: $(RESFILES) $(RESDIR)/$(RESDIR).lst
|
install-resfiles: $(RESFILES)
|
||||||
$(MKINSTALLDIRS) $(DESTDIR)$(libdir)/$(PACKAGE)/$(VERSION)
|
$(MKINSTALLDIRS) $(DESTDIR)$(libdir)/$(PACKAGE)/$(VERSION)
|
||||||
$(INVOKE) $(top_builddir)/tools/pkgdata/pkgdata -p $(RESDIR) -O $(top_builddir)/tools/pkgdata/icupkg.inc -m common -v -c -d $(DESTDIR)$(libdir)/$(PACKAGE)/$(VERSION) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
|
$(INVOKE) $(top_builddir)/tools/pkgdata/pkgdata -p $(RESDIR) -O $(top_builddir)/tools/pkgdata/icupkg.inc -m common -d uconvmsg -I $(DESTDIR)$(libdir)/$(PACKAGE)/$(VERSION) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
|
||||||
|
|
||||||
$(RESDIR)/%.res: $(srcdir)/%.txt
|
$(RESDIR)/%.res: $(srcdir)/%.txt
|
||||||
@$(MKINSTALLDIRS) $(RESDIR)
|
@$(MKINSTALLDIRS) $(RESDIR)
|
||||||
|
Loading…
Reference in New Issue
Block a user