Mercurial > pidgin
annotate src/win32/global.mak @ 4242:cf19d8102b34
[gaim-migrate @ 4492]
John B. Silvestri (silvestrij) writes:
"This adds a --longhelp (-H) option to gaim-remote, which details its
usage (aim?goim,gochat, and addbuddy)."
he further writes:
"Now follows Sean's request of being `gaim-remote
-h uri` or `gaim-remote --help uri`
This is version 3.11.\n"), name);
luke writes that this patch is needed because _i_ can't remember how to use
the gaim-remote stuff, much less help others to do so, and what use is a
gaim-remote that only 2 people know how to use?
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 08 Jan 2003 04:00:29 +0000 |
parents | 38c95b5835f9 |
children | 2a2d6d21f1d7 |
rev | line source |
---|---|
3711
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
1 # |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
2 # global.mak |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
3 # |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
4 # This file should be included by all Makefile.mingw files for project |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
5 # wide definitions. |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
6 # |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
7 |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
8 CC = gcc.exe |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
9 |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
10 # Don't use -g flag when building Plugin DLLs |
3855
38c95b5835f9
[gaim-migrate @ 4007]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3711
diff
changeset
|
11 CFLAGS += -O2 -Wall -mno-cygwin -fnative-struct |
3711
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
12 |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
13 VERSION := $(shell cat $(GAIM_TOP)/VERSION) |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
14 |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
15 DEFINES += -DAIM_BUILDDATE=\"`date +%Y%m%d`\" \ |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
16 -DAIM_BUILDTIME=\"`date +%H%M%S`\" \ |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
17 -DVERSION=\"$(VERSION)\" \ |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
18 -DHAVE_CONFIG_H \ |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
19 -DGTK_ENABLE_BROKEN |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
20 |