diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-30 16:06:38 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-30 16:06:38 +0000 |
commit | 0823dbf01e72a5c38aec1e1a347872348f171d11 (patch) | |
tree | aecdd8c5a86a13ce4c9d865706a544fe2574c40d /plugins/Watrack_MPD/Makefile | |
parent | c09b5f6895d750885b118f7c5487aa60f8b17a3b (diff) |
folder rename
git-svn-id: http://svn.miranda-ng.org/main/trunk@1277 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Watrack_MPD/Makefile')
-rwxr-xr-x | plugins/Watrack_MPD/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/Watrack_MPD/Makefile b/plugins/Watrack_MPD/Makefile new file mode 100755 index 0000000000..02c89bd6d3 --- /dev/null +++ b/plugins/Watrack_MPD/Makefile @@ -0,0 +1,12 @@ +all:
+ i686-pc-mingw32-gcc -c -DBUILD_DLL -D UNICODE -D _UNICODE *.c -I../../include -I/usr/i686-pc-mingw32/usr/include -I. -w -mwin32 -mwindows -mdll -march=i686 -msse -O2 -pipe
+ i686-pc-mingw32-windres -i watrack_mpd.rc -o resources.o
+ i686-pc-mingw32-gcc -shared -o watrack_mpd.dll *.o -Wl,-O1,-s
+ upx -9 watrack_mpd.dll
+
+clean:
+ rm *.o
+
+clean-all:
+ rm *.o *.dll
+
|