diff options
author | Tom Feist <shabble@metavore.org> | 2011-02-19 16:28:57 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-02-19 16:28:57 +0000 |
commit | 5bbf53a0369922ea853efc51ff54adaa0f8686e1 (patch) | |
tree | b17a6937ef859eb16909b6715da26ae868e10e0a /modules/overlays/Makefile | |
parent | updated auto-testing to ebe able to handle inputs, and partially process the ... (diff) | |
download | irssi-scripts-5bbf53a0369922ea853efc51ff54adaa0f8686e1.tar.gz irssi-scripts-5bbf53a0369922ea853efc51ff54adaa0f8686e1.zip |
added a 'overlay' loadable module that's hopefully going to do osme dirty dirty
things to the curses layer.
Diffstat (limited to 'modules/overlays/Makefile')
-rw-r--r-- | modules/overlays/Makefile | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/modules/overlays/Makefile b/modules/overlays/Makefile index 917abb6..ba5d787 100644 --- a/modules/overlays/Makefile +++ b/modules/overlays/Makefile @@ -22,15 +22,17 @@ LDFLAGS = -avoid-version -module -bundle -flat_namespace -undefined suppress OBJECTS = overlay_core.o \ overlay_impl.o -IRSSI_INCLUDE = -I$(IRSSI_DIST) \ - -I$(IRSSI_DIST)/src \ - -I$(IRSSI_DIST)/src/fe-common/core \ - -I$(IRSSI_DIST)/src/core \ - -I$(IRSSI_DIST)/src/fe-text \ - -I$(IRSSI_DIST)/src/irc \ - -I$(IRSSI_DIST)/src/irc/core \ - -I$(IRSSI_DIST)/src/irc/dcc \ - -I$(IRSSI_DIST)/src/irc/notifylist +IRSSI_INC = $(HOME)/sources/irssi-git + +IRSSI_INCLUDE = -I$(IRSSI_INC) \ + -I$(IRSSI_INC)/src \ + -I$(IRSSI_INC)/src/fe-common/core \ + -I$(IRSSI_INC)/src/core \ + -I$(IRSSI_INC)/src/fe-text \ + -I$(IRSSI_INC)/src/irc \ + -I$(IRSSI_INC)/src/irc/core \ + -I$(IRSSI_INC)/src/irc/dcc \ + -I$(IRSSI_INC)/src/irc/notifylist GLIB_CFLAGS = $(shell pkg-config glib-2.0 --cflags) |