view sounds/Makefile.mingw @ 3737:5939b57aeed8

[gaim-migrate @ 3875] Gaim no longer has to be packaged as root. It now uses the %{_*} macros for specifying directories. I also removed the deprecated Serial: line. I think that's it. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 18 Oct 2002 04:50:37 +0000
parents 9682c0e022c6
children
line wrap: on
line source

# Makefile for creating wave data include files (mingw win32)

all: wav2h.exe hfiles

wav2h.exe:
	gcc -c wav2h.c -o wav2h.o
	gcc -o wav2h.exe wav2h.o

%.h: %.wav wav2h.exe
	./wav2h.exe $<

hfiles: BuddyArrive.h BuddyLeave.h Send.h Receive.h RedAlert.h

clean:
	rm -rf *.o *.exe *.h