From 0f825d80c526a085ceaa2c19e3ab1ffab65caa84 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20D=C5=82ugo=C5=82=C4=99cki?= Date: Fri, 5 Jul 2013 22:40:22 +0200 Subject: [PATCH] Removed unused makefiles. --- edit/Makefile | 69 --------------------------------------- graph/Makefile | 62 ----------------------------------- help/Makefile | 62 ----------------------------------- int/Makefile | 83 ----------------------------------------------- kernel/Makefile | 62 ----------------------------------- lgconfig/Makefile | 63 ----------------------------------- net/Makefile | 63 ----------------------------------- preproc/Makefile | 62 ----------------------------------- 8 files changed, 526 deletions(-) delete mode 100644 edit/Makefile delete mode 100644 graph/Makefile delete mode 100644 help/Makefile delete mode 100644 int/Makefile delete mode 100644 kernel/Makefile delete mode 100644 lgconfig/Makefile delete mode 100644 net/Makefile delete mode 100644 preproc/Makefile diff --git a/edit/Makefile b/edit/Makefile deleted file mode 100644 index 61b9be2..0000000 --- a/edit/Makefile +++ /dev/null @@ -1,69 +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 -####### -####### Change the INCDIR, LFLAGS and MOC - -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 - -HEADERS = editor.h -SOURCES = editor.cpp -OBJECTS = editor.o -SRCMOC = moc_editor.cpp -OBJMOC = moc_editor.o -TARGET = logedit - -####### Implicit rules - -.SUFFIXES: .cpp .c - -.cpp.o: - $(CC) -c $(CFLAGS) -I$(INCDIR) -o $@ $< - -.c.o: - $(CC) -c $(CFLAGS) -I$(INCDIR) -o $@ $< - -####### Build rules - -all: $(TARGET) - -$(TARGET): $(OBJECTS) $(OBJMOC) - $(CC) $(OBJECTS) $(OBJMOC) -o $(TARGET) $(LFLAGS) - -moc: $(SRCMOC) - -clean: - -rm -f $(OBJECTS) $(OBJMOC) $(SRCMOC) $(TARGET) - -####### Compile - -editor.o: editor.cpp \ - editor.h - - -moc_editor.o: moc_editor.cpp \ - editor.h - -moc_editor.cpp: editor.h - $(MOC) editor.h -o moc_editor.cpp diff --git a/graph/Makefile b/graph/Makefile deleted file mode 100644 index 7263fd4..0000000 --- a/graph/Makefile +++ /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 - - diff --git a/help/Makefile b/help/Makefile deleted file mode 100644 index b4e10e2..0000000 --- a/help/Makefile +++ /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 = help.cpp -OBJECTS = help.o -SRCMETA = help.moc -TARGET = loghelp - -####### 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 - -help.moc: help.cpp - $(MOC) help.cpp -o help.moc - - -# DO NOT DELETE THIS LINE -- make depend depends on it. diff --git a/int/Makefile b/int/Makefile deleted file mode 100644 index 2871c38..0000000 --- a/int/Makefile +++ /dev/null @@ -1,83 +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 -SHELL=/bin/bash -#.SUFFIXES: .o .c - -############################################################################# -# switches : -# OBJECTADDR - switch on special process addressing - object simulates -# process pointer -# CDBG - turn on debugging of compactifier, compactifier appends to file -# 'trace' state of memory before & after the compactification, -# also a history of compactification & process number is dumped -# RPCDBG - debugging of alien call, all actions : alien call, acknowledges, -# passivations and returns are written to stderr -# NO_GRAPH - nonstand.c defines only INKEY grom IIUWGRAPH -# DLINK - DLINK network version -# TCPIP - TCPIP network version - needs also OBJECTADDR -# -# switches depending on environment : -# TURBOC - if using BORLAND TURBO-C compiler -# MSDOS/OS2/UNIX - choose operating system -# USE_CLOCK - scheduler should use clock() function to measure time -# USE_ALARM - scheduler should use alarm() function to measure time -# WORD_16BIT/DWORD_16BIT/WORD_32BIT - choose memory model : -# small 16-bit / large 16-bit / small 32-bit -# - - -UNIXPARS=-DUNIX -DWORD_32BIT -DUSE_CLOCK -Dpascal= -UNIXPARSNG=$(UNIXPARS) - -#CC=cc $(UNIXPARSNG) -DNO_PROTOTYPES # SUN,HP -#CC=rcc $(UNIXPARSNG) -O # SCO - AT&T C compiler -#CC=cc -W1 $(UNIXPARSNG) # SCO -#CC=cc -W1 $(UNIXPARSNG) -DOBJECTADDR # SCO -#CC=cc -W1 $(UNIXPARSNG) -DOBJECTADDR -DTCPIP # SCO TCPIP -CC=gcc $(UNIXPARSNG) -DOBJECTADDR -DSYSV -I$(QINC) # GNU C++ TCPIP -#CC=cc -W1 $(UNIXPARS) -DSYSV -DXSIGHT # SCO with X11 graphics -#CC=gcc -g $(UNIXPARS) -DSYSV -DXSIGHT # SCO GCC with X11 graphics - -CCc=$(CC) # common version -#CCc=$(CC) -Fo$*.o # MSDOS MSC version - -target : int - -############################################################################# -#ADDOPT = -lsocket # sun -ADDOPT = $(QLINK) # Linux - - -OBJ= cint.o compact.o control.o util.o handler.o intdt.o \ - memory.o object.o runsys.o standard.o \ - execute.o fileio.o nonstand.o process.o procaddr.o queue.o \ - rpcall.o typchk.o - -.c.o : - $(CCc) -c $*.c -.s.o: - as -o $*.o $*.s - - -int: $(OBJ) -# $(CC) $(OBJ) inkeyux.o -lm -lX11 -lmalloc -lsocket -ggdb -o int - $(CC) $(OBJ) -lm $(ADDOPT) -o logint -# strip logint -# mv int $(HOME)/LOGLAN.PAU/bin - -nonstand.o : nonstand.c - -clean : - rm -f *.o *.bak logint diff --git a/kernel/Makefile b/kernel/Makefile deleted file mode 100644 index 0449dd4..0000000 --- a/kernel/Makefile +++ /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 = kernel.cpp -OBJECTS = kernel.o -SRCMETA = kernel.moc -TARGET = logker - -####### 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 - -kernel.moc: kernel.cpp - $(MOC) kernel.cpp -o kernel.moc - - diff --git a/lgconfig/Makefile b/lgconfig/Makefile deleted file mode 100644 index 6351294..0000000 --- a/lgconfig/Makefile +++ /dev/null @@ -1,63 +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 -##### Change INCDIR, LFLAGS and MOC - -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 = lgconfig.cpp -OBJECTS = lgconfig.o -SRCMETA = lgconfig.moc -TARGET = lgconfig - -####### 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 - -lgconfig.moc: lgconfig.cpp - $(MOC) lgconfig.cpp -o lgconfig.moc - - -# DO NOT DELETE THIS LINE -- make depend depends on it. diff --git a/net/Makefile b/net/Makefile deleted file mode 100644 index 1e5f140..0000000 --- a/net/Makefile +++ /dev/null @@ -1,63 +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 = lognet.cpp -OBJECTS = lognet.o -SRCMETA = lognet.moc -TARGET = lognet - -####### 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 - -lognet.moc: lognet.cpp - $(MOC) lognet.cpp -o lognet.moc - - -# DO NOT DELETE THIS LINE -- make depend depends on it. diff --git a/preproc/Makefile b/preproc/Makefile deleted file mode 100644 index 5e580c9..0000000 --- a/preproc/Makefile +++ /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 = prep.cpp -OBJECTS = prep.o -SRCMETA = prep.moc -TARGET = logcomp - -####### 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 - -prep.moc: prep.cpp - $(MOC) prep.cpp -o prep.moc - - -# DO NOT DELETE THIS LINE -- make depend depends on it. -- 2.30.2