From f120e3e367f01f006bd5ddfd9f1ac018273e75e3 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sat, 10 Nov 2012 20:08:51 +0100 Subject: filename autocompletion using and * autocompletion only in specified states * GtkInfoPopup widget to display possible completions, written using Gob2 --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 49cf315..5d7787a 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +GOB2:=gob2 + GTK_CFLAGS:=$(shell pkg-config --cflags gtk+-2.0) GTK_LDFLAGS:=$(shell pkg-config --libs gtk+-2.0) @@ -5,14 +7,22 @@ SCI_CFLAGS:=-I../scintilla/include -DGTK -DSCI_LEXER SCI_LDFLAGS:=../scintilla/bin/scintilla.a CPPFLAGS:= +CFLAGS:=-Wall -std=c99 -g -O0 $(GTK_CFLAGS) $(SCI_CFLAGS) CXXFLAGS:=-Wall -g -O0 $(GTK_CFLAGS) $(SCI_CFLAGS) LDFLAGS:=$(GTK_LDFLAGS) $(SCI_LDFLAGS) all : sciteco sciteco : main.o cmdline.o undo.o expressions.o qbuffers.o \ - parser.o goto.o + parser.o goto.o \ + gtk-info-popup.o $(CXX) -o $@ $^ $(LDFLAGS) +main.o : gtk-info-popup.h + +%.c %.h %-private.h : %.gob + $(GOB2) $< + clean: $(RM) sciteco *.o + $(RM) gtk-info-popup*.[ch] -- cgit v1.2.3