view sounds/Makefile.am @ 78:66c5a24b62ec

[gaim-migrate @ 88] Touch-ups with the install for applet. Rather than all that extra stuff at the end of ./configure, all you need now is --enable-gnome. ./configure will figure out where gnome-config is and use that to determine where things should be installed. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 31 Mar 2000 20:22:12 +0000
parents b1d7336cba85
children 05f01078d133
line wrap: on
line source

bin_PROGRAMS = au2h

au2h_SOURCES = au2h.c

EXTRA_DIST = BuddyArrive.au BuddyLeave.au Send.au Receive.au

all: BuddyArrive.h BuddyLeave.h Send.h Receive.h

BuddyArrive.h: au2h BuddyArrive.au
	./au2h BuddyArrive.au BuddyArrive.h

BuddyLeave.h: au2h BuddyLeave.au
	./au2h BuddyLeave.au BuddyLeave.h

Send.h: au2h Send.au                              
	./au2h Send.au Send.h                  

Receive.h: au2h Receive.au                              
	./au2h Receive.au Receive.h                  

if GNOMEAPPLET
gnomedata = `@GNOME_CONFIG@ --datadir`
gaimsoundsdir = $(gnomedata)/sounds/gaim
gaimsounds_DATA = $(EXTRA_DIST)
endif