comparison sounds/Makefile.mingw @ 3630:9682c0e022c6

[gaim-migrate @ 3753] Yeah this will probably break a lot of shit knowing my luck. But hey, I really don't care what people thnk. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 11 Oct 2002 03:14:01 +0000
parents
children
comparison
equal deleted inserted replaced
3629:afc5bb164c5a 3630:9682c0e022c6
1 # Makefile for creating wave data include files (mingw win32)
2
3 all: wav2h.exe hfiles
4
5 wav2h.exe:
6 gcc -c wav2h.c -o wav2h.o
7 gcc -o wav2h.exe wav2h.o
8
9 %.h: %.wav wav2h.exe
10 ./wav2h.exe $<
11
12 hfiles: BuddyArrive.h BuddyLeave.h Send.h Receive.h RedAlert.h
13
14 clean:
15 rm -rf *.o *.exe *.h