Removed unused makefiles.
[vlp.git] / graph / Makefile
diff --git a/graph/Makefile b/graph/Makefile
deleted file mode 100644 (file)
index 7263fd4..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-###   Includes for QT library
-QINC=/usr/include/qt3
-
-###   QT library directory
-QLIB=/usr/lib3/
-
-###   moc compiler directory
-MOCDIR=/usr/bin
-
-###  Install directory
-INSTALLDIR=/home/andrzej/vlp3binD
-
-###  QT Library linking phrase
-QLINK=-lqt-mt
-
-INCDIR = $(QINC)
-CFLAGS = -O2 -fno-strength-reduce -Wall -W -I/usr/X11R6/include 
-LIBCFLAGS = -fPIC
-YACCCFLAGS = -Wno-unused -Wno-parentheses
-LFLAGS = -L$(QLIB) $(QLINK)
-CC = g++
-MOC = $(MOCDIR)/moc
-SHELL =        /bin/sh
-
-
-####### Files
-
-SOURCES =      loggraph.cpp
-OBJECTS =      loggraph.o
-SRCMETA =      loggraph.moc
-TARGET =       loggraph        
-
-####### Implicit rules
-
-.SUFFIXES: .cpp
-
-.cpp.o:
-       $(CC) -c $(CFLAGS) -I$(INCDIR) $<
-
-####### Build rules
-
-all: $(TARGET)
-
-$(TARGET): $(SRCMETA) $(OBJECTS)
-       $(CC) $(OBJECTS) -o $(TARGET) $(LFLAGS) -lm
-
-depend:
-       @makedepend -I$(INCDIR) $(SOURCES) 2> /dev/null
-
-showfiles:
-       @echo $(SOURCES) $(HEADERS) Makefile
-
-clean:
-       -rm -f *.o *.bak *~ *% #*
-       -rm -f $(SRCMETA) $(TARGET)
-
-####### Meta objects
-
-loggraph.moc: loggraph.cpp
-       $(MOC) loggraph.cpp -o loggraph.moc
-
-