1999-07-10 Michael Natterer <mitschel@cs.tu-berlin.de> * app/gdisplay.c (gdisplay_set_menu_sensitivity): Undo/Redo should be sensitive even if there is no layer :-) * app/commands.h * app/docindex.[ch] * app/docindexif.[ch] * app/file_new_dialog.[ch]: some #include cleanups. * plug-ins/helpbrowser/Makefile.classic: less primitive version.
14 lines
268 B
Text
14 lines
268 B
Text
CFLAGS = `gtk-config --cflags` -g -Wall -ansi
|
|
|
|
LDFLAGS = `gtk-config --libs` `gimptool --libs` -lgtkxmhtml
|
|
|
|
OBJECTS = helpbrowser.o queue.o
|
|
|
|
TARGET = helpbrowser
|
|
|
|
$(TARGET): $(OBJECTS)
|
|
$(CC) -o $(TARGET) $(OBJECTS) $(LDFLAGS)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
-rm -f $(OBJECTS)
|