diff options
author | Ted Gould <ted@gould.cx> | 2011-09-13 11:21:24 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-09-13 11:21:24 -0500 |
commit | 24f2228ab377b2822adb0d8c02198943791d4fcf (patch) | |
tree | 07461152473360d628b804179b373fe747df7699 /src | |
parent | 6b7751a8de8e32cdc3cf158bd22e0a821fa5c5ca (diff) | |
download | ayatana-ido-24f2228ab377b2822adb0d8c02198943791d4fcf.tar.gz ayatana-ido-24f2228ab377b2822adb0d8c02198943791d4fcf.tar.bz2 ayatana-ido-24f2228ab377b2822adb0d8c02198943791d4fcf.zip |
Putting the offscreen proxy in EXTRA_DIST if we're building GTK2 version
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 99965fd..ac34bf4 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -22,15 +22,19 @@ sources_h = \ idotimeline.h \ libido.h -if USE_GTK3 -sources_h += idooffscreenproxy.h -endif - EXTRA_DIST = \ ido.list \ idotypebuiltins.h.template \ idotypebuiltins.c.template + +if USE_GTK3 +sources_h += idooffscreenproxy.h +else +EXTRA_DIST += idooffscreenproxy.h \ + idooffscreenproxy.c +endif + idotypebuiltins.h: stamp-idotypebuiltins.h stamp-idotypebuiltins.h: $(sources_h) |