1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
VPATH = @srcdir@
srcdir = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
datadir = @datadir@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INCDIR = @CPPFLAGS@ -I../include -I. -I.. @QT_CFLAGS@
LIBS = @LIBS@ @X_PRE_LIBS@ -lX11 @X_EXTRA_LIBS@
DEFS = @DEFS@ -DEXPLORERDATADIR="\"${datadir}\""
CXXFLAGS = $(INCDIR) @CXXFLAGS@ @X_CFLAGS@ $(DEFS) -fPIC # @PICFLAGS@
LFLAGS = @LDFLAGS@ $(LIBS) @X_LIBS@ @QT_LIBS@
CXX = @CXX@
MOC = @MOC@
SHELL = /bin/sh
RANLIB = @RANLIB@
LN_S = @LN_S@
####### Implicit rules
.SUFFIXES: .cpp
.cpp.o:
$(CXX) -c $(CXXFLAGS) $<
####### Files
}SOURCES = eplugin.cpp
OBJECTS = eplugin.o
TARGET = eplugin.so
# VERSION - the version number of the shared library, where applicable
VERSION = 0.1.0
# Creates the library when all files have been compiled
all: $(TARGET)
$(TARGET): $(OBJECTS)
ld -Bshareable -o $(TARGET) $(OBJECTS) $(LFLAGS)
$(INSTALL) $(TARGET) ../../plugins
dep: depend
clean:
-rm *~ *.so
-rm $(OBJECTS)
# DO NOT DELETE THIS LINE -- make depend depends on it.
|