eclipse makefile
1
CXXFLAGS = -O2 -g -Wall -fmessage-length=0
OBJS = newfcgi.o
LIBS = `pkg-config glib-2.0 --cflags --libs` -lscholar -legg2
TARGET = newfcgi.exe
$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
all: $(TARGET)
clean:
rm -f $(OBJS) $(TARGET
2