diff options
author | Tom Feist <shabble@metavore.org> | 2011-02-19 13:34:26 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-02-19 13:34:26 +0000 |
commit | 6ea0d0b0b703261869ab24ce2cbf62c7c64f3dc8 (patch) | |
tree | 8eed9b0b0813e35d621f5156cd08a7b1ae660f3e /modules/overlays/Makefile | |
parent | added some detail on FSM for input control, and how to detect <esc> sequences. (diff) | |
download | irssi-scripts-6ea0d0b0b703261869ab24ce2cbf62c7c64f3dc8.tar.gz irssi-scripts-6ea0d0b0b703261869ab24ce2cbf62c7c64f3dc8.zip |
added module 'overlay' to test out some ideas for fiddling with curses widgets internally
Diffstat (limited to 'modules/overlays/Makefile')
-rw-r--r-- | modules/overlays/Makefile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/modules/overlays/Makefile b/modules/overlays/Makefile new file mode 100644 index 0000000..917abb6 --- /dev/null +++ b/modules/overlays/Makefile @@ -0,0 +1,57 @@ + +### Edit these parameters ### + +# change this to 'find' if you're on a decent system. +FIND = gfind # stupid OSX non-gnu defaults. + +# Where your irssi include files live. You might need to install an +# 'irssi-dev' package or something like that. +IRSSI_DIST = /opt/stow/repo/irssi-debug/include/irssi + +# probably $(HOME)/.irssi for most people. +IRSSI_USER_DIR = $(HOME)/projects/tmp/test/irssi-debug +MODULE_NAME = overlay + +### You shouldn't need to edit anything beyond this point ### + +LIB_NAME = lib$(MODULE_NAME).so +CFLAGS = -Wall -O2 -Werror -g -DMODULE_NAME=\"$(MODULE_NAME)\" +LDFLAGS = -avoid-version -module -bundle -flat_namespace -undefined suppress + +# When you start adding more components to your module, add them here. +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 + + +GLIB_CFLAGS = $(shell pkg-config glib-2.0 --cflags) + +all: $(LIB_NAME) + +%.o: %.c Makefile + $(CC) $(CFLAGS) $(GLIB_CFLAGS) $(IRSSI_INCLUDE) -I. -fPIC -c $< + +$(LIB_NAME): $(OBJECTS) + $(CC) $(CFLAGS) $(LDFLAGS) $(OBJECTS) -o $@ + +install: $(LIB_NAME) + install $< $(IRSSI_USER_DIR)/modules + +clean: + rm -rf *~ *.o *.so core || true + +TAGS: + $(FIND) -type f -exec etags -a -o TAGS {} \; + +.default: all + +.phony: clean install TAGS |