annotate sounds/Makefile.mingw @ 3850:daf2cec08eac
[gaim-migrate @ 4002]
" The current ISO-8859-1 detection in oscar.c for
determining what character set to use for sending an IM
is completely busted. I don't know what I was thinking
when I wrote it. This patch fixes that." --Ethan Blanton (eblanton)
committer: Tailor Script <tailor@pidgin.im>
author |
Luke Schierer <lschiere@pidgin.im> |
date |
Fri, 01 Nov 2002 21:18:52 +0000 |
parents |
9682c0e022c6 |
children |
|
rev |
line source |
3630
|
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 |