automake
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Building prog first


From: Russell Shaw
Subject: Re: Building prog first
Date: Sun, 21 Mar 2010 19:26:44 +1100
User-agent: Mozilla-Thunderbird 2.0.0.22 (X11/20091109)

Ralf Wildenhues wrote:
Hello Russell,

* Russell Shaw wrote on Sun, Mar 21, 2010 at 07:06:00AM CET:
I want the "unimain" program built first, then use it to generate
unidata.tab.c, which is then compiled and linked into librunicode.la

  bin_PROGRAMS = unimain
  unimain_SOURCES = unimain.c

  unidata.tab.c: /usr/share/unicode/UnicodeData.txt
      ./unimain $< > $@

Then you need a dependency from unidata.tab.c on unimain:

unidata.tab.c: unimain$(EXEEXT) /usr/share/unicode/UnicodeData.txt
        ./unimain$(EXEEXT) $< > $@

Ok, that works thanks:)

However, "make install" installs unimain into /usr/local/bin

How do i stop this program from being installed?

I did:

  install-exec-hook:
      rm $(DESTDIR)$(bindir)/unimain$(EXEEXT)


This deletes it out of /usr/local/bin after installing it which
seems kind of kludgy.

Furthermore, please don't hard-code absolute paths like
  /usr/share/unicode/UnicodeData.txt

in your makefiles.  Make them configurable by configure.  Maybe your
users don't have root rights on their system but have the file installed
below their home somewhere?





reply via email to

[Prev in Thread] Current Thread [Next in Thread]