summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 24f0752..0000000
--- a/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-CFLAGS=-I/usr/X11R6/include -g -Wall
-CC=c++
-
-OBJECTS=GsWidget.o PSEditWidget.o PSEditor.o PSEditText.o PSEditModel.o Postscript.o flpsed.o util.o
-
-%.o: %.cxx
- $(CC) -c $(CFLAGS) $*.cxx
-
-flpsed: $(OBJECTS)
- $(CC) -g -o flpsed $(OBJECTS) -L/usr/X11R6/lib -lfltk -lX11 -lm
-
-clean:
- rm -f flpsed $(OBJECTS)