Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(517)

Side by Side Diff: third_party/yasm/patched-yasm/tools/genperf/Makefile.inc

Issue 6170009: Update our yasm copy to yasm 1.1.0 (Part 1: yasm side)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # $Id: Makefile.inc 1939 2007-09-10 07:15:50Z peter $ 1 # $Id: Makefile.inc 2234 2009-10-31 21:52:42Z peter $
2 2
3 # These utility programs have to be built for BUILD host in cross-build. 3 # These utility programs have to be built for BUILD host in cross-build.
4 # This makes things rather non-standard automake 4 # This makes things rather non-standard automake
5 5
6 noinst_PROGRAMS += genperf 6 noinst_PROGRAMS += genperf
7 7
8 # Suffix rule for genperf 8 # Suffix rule for genperf
9 SUFFIXES += .gperf 9 SUFFIXES += .gperf
10 .gperf.c: genperf$(EXEEXT) 10 .gperf.c: genperf$(EXEEXT)
11 $(top_builddir)/genperf$(EXEEXT) $< $@ 11 $(top_builddir)/genperf$(EXEEXT) $< $@
12 12
13 genperf_SOURCES = 13 genperf_SOURCES =
14 EXTRA_DIST += tools/genperf/genperf.c 14 EXTRA_DIST += tools/genperf/genperf.c
15 EXTRA_DIST += tools/genperf/perfect.c 15 EXTRA_DIST += tools/genperf/perfect.c
16 EXTRA_DIST += tools/genperf/perfect.h 16 EXTRA_DIST += tools/genperf/perfect.h
17 EXTRA_DIST += tools/genperf/standard.h 17 EXTRA_DIST += tools/genperf/standard.h
18 genperf_LDADD = genperf.$(OBJEXT) 18 genperf_LDADD = genperf.$(OBJEXT)
19 genperf_LDADD += gp-perfect.$(OBJEXT) 19 genperf_LDADD += gp-perfect.$(OBJEXT)
20 genperf_LDADD += gp-phash.$(OBJEXT) 20 genperf_LDADD += gp-phash.$(OBJEXT)
21 genperf_LDADD += gp-xmalloc.$(OBJEXT) 21 genperf_LDADD += gp-xmalloc.$(OBJEXT)
22 genperf_LDADD += gp-xstrdup.$(OBJEXT) 22 genperf_LDADD += gp-xstrdup.$(OBJEXT)
23 genperf_LINK = $(CCLD_FOR_BUILD) -o $@ 23 genperf_LINK = $(CCLD_FOR_BUILD) -o $@
24 24
25 genperf.$(OBJEXT): tools/genperf/genperf.c 25 genperf.$(OBJEXT): tools/genperf/genperf.c
26 » $(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/ genperf/genperf.c || echo '$(srcdir)/'`tools/genperf/genperf.c 26 » $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
27 » -c -o $@ `test -f tools/genperf/genperf.c || echo '$(srcdir)/'`tools/g enperf/genperf.c
27 28
28 gp-perfect.$(OBJEXT): tools/genperf/perfect.c 29 gp-perfect.$(OBJEXT): tools/genperf/perfect.c
29 » $(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f tools/ genperf/perfect.c || echo '$(srcdir)/'`tools/genperf/perfect.c 30 » $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
31 » -c -o $@ `test -f tools/genperf/perfect.c || echo '$(srcdir)/'`tools/g enperf/perfect.c
30 32
31 gp-phash.$(OBJEXT): libyasm/phash.c 33 gp-phash.$(OBJEXT): libyasm/phash.c
32 » $(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f libyas m/phash.c || echo '$(srcdir)/'`libyasm/phash.c 34 » $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
35 » -c -o $@ `test -f libyasm/phash.c || echo '$(srcdir)/'`libyasm/phash.c
33 36
34 gp-xmalloc.$(OBJEXT): libyasm/xmalloc.c 37 gp-xmalloc.$(OBJEXT): libyasm/xmalloc.c
35 » $(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f libyas m/xmalloc.c || echo '$(srcdir)/'`libyasm/xmalloc.c 38 » $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
39 » -c -o $@ `test -f libyasm/xmalloc.c || echo '$(srcdir)/'`libyasm/xmall oc.c
36 40
37 gp-xstrdup.$(OBJEXT): libyasm/xstrdup.c 41 gp-xstrdup.$(OBJEXT): libyasm/xstrdup.c
38 » $(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f libyas m/xstrdup.c || echo '$(srcdir)/'`libyasm/xstrdup.c 42 » $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
43 » -c -o $@ `test -f libyasm/xstrdup.c || echo '$(srcdir)/'`libyasm/xstrd up.c
39 44
OLDNEW
« no previous file with comments | « third_party/yasm/patched-yasm/tools/genmacro/Makefile.inc ('k') | third_party/yasm/patched-yasm/tools/genperf/genperf.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698