| OLD | NEW |
| 1 # $Id: Makefile.inc 2234 2009-10-31 21:52:42Z peter $ | |
| 2 | |
| 3 # These utility programs have to be built for BUILD host in cross-build. | 1 # These utility programs have to be built for BUILD host in cross-build. |
| 4 # This makes things rather non-standard automake | 2 # This makes things rather non-standard automake |
| 5 | 3 |
| 6 noinst_PROGRAMS += genperf | 4 noinst_PROGRAMS += genperf |
| 7 | 5 |
| 8 # Suffix rule for genperf | 6 # Suffix rule for genperf |
| 9 SUFFIXES += .gperf | 7 SUFFIXES += .gperf |
| 10 .gperf.c: genperf$(EXEEXT) | 8 .gperf.c: genperf$(EXEEXT) |
| 11 $(top_builddir)/genperf$(EXEEXT) $< $@ | 9 $(top_builddir)/genperf$(EXEEXT) $< $@ |
| 12 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 35 -c -o $@ `test -f libyasm/phash.c || echo '$(srcdir)/'`libyasm/phash.c | 33 -c -o $@ `test -f libyasm/phash.c || echo '$(srcdir)/'`libyasm/phash.c |
| 36 | 34 |
| 37 gp-xmalloc.$(OBJEXT): libyasm/xmalloc.c | 35 gp-xmalloc.$(OBJEXT): libyasm/xmalloc.c |
| 38 $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \ | 36 $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \ |
| 39 -c -o $@ `test -f libyasm/xmalloc.c || echo '$(srcdir)/'`libyasm/xmall
oc.c | 37 -c -o $@ `test -f libyasm/xmalloc.c || echo '$(srcdir)/'`libyasm/xmall
oc.c |
| 40 | 38 |
| 41 gp-xstrdup.$(OBJEXT): libyasm/xstrdup.c | 39 gp-xstrdup.$(OBJEXT): libyasm/xstrdup.c |
| 42 $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \ | 40 $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \ |
| 43 -c -o $@ `test -f libyasm/xstrdup.c || echo '$(srcdir)/'`libyasm/xstrd
up.c | 41 -c -o $@ `test -f libyasm/xstrdup.c || echo '$(srcdir)/'`libyasm/xstrd
up.c |
| 44 | 42 |
| OLD | NEW |