Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Shkenev
gajim
Commits
ae2e86de
Commit
ae2e86de
authored
19 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
we can use make OPTFLAGS=... to add some flags
parent
36590c86
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+2
-0
2 additions, 0 deletions
Makefile
src/Makefile
+1
-1
1 addition, 1 deletion
src/Makefile
src/common/Makefile
+1
-1
1 addition, 1 deletion
src/common/Makefile
with
4 additions
and
2 deletions
Makefile
+
2
−
0
View file @
ae2e86de
...
...
@@ -5,6 +5,8 @@ GAJIM_AP = 0 # do we build Autopackage?
MODULES
=
src src/common po
PREFIX
=
/usr/local
DESTDIR
=
OPTFLAGS
=
export
OPTFLAGS
LIBDIR
=
/lib
export
LIBDIR
MANDIR
=
$(
DESTDIR
)$(
PREFIX
)
/share/man
...
...
This diff is collapsed.
Click to expand it.
src/Makefile
+
1
−
1
View file @
ae2e86de
...
...
@@ -10,7 +10,7 @@ trayicon.so: trayicon.o eggtrayicon.o trayiconmodule.o
$(
CC
)
$(
LDFLAGS
)
-shared
$^
-o
$@
gtkspell.so
:
$(
CC
)
$(
CFLAGS
)
$(
LDFLAGS
)
`
pkg-config
--libs
--cflags
gtkspell-2.0
`
-shared
gtkspellmodule.c
$^
-o
$@
$(
CC
)
$(
OPTFLAGS
)
$(
CFLAGS
)
$(
LDFLAGS
)
`
pkg-config
--libs
--cflags
gtkspell-2.0
`
-shared
gtkspellmodule.c
$^
-o
$@
# The path to the GTK+ python types
DEFS
=
`
pkg-config
--variable
=
defsdir pygtk-2.0
`
...
...
This diff is collapsed.
Click to expand it.
src/common/Makefile
+
1
−
1
View file @
ae2e86de
...
...
@@ -6,7 +6,7 @@ LDFLAGS = `pkg-config --libs gtk+-2.0 pygtk-2.0`
all
:
idle.so
idle.so
:
$(
CC
)
$(
CFLAGS
)
$(
LDFLAGS
)
-shared
idle.c
$^
-o
$@
-L
/usr/X11R6
$(
LIBDIR
)
-lX11
-lXss
-lXext
$(
CC
)
$(
OPTFLAGS
)
$(
CFLAGS
)
$(
LDFLAGS
)
-shared
idle.c
$^
-o
$@
-L
/usr/X11R6
$(
LIBDIR
)
-lX11
-lXss
-lXext
clean
:
rm
-f
*
.so
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment