summaryrefslogtreecommitdiff
path: root/graphics/pstex/makefile.bsd
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /graphics/pstex/makefile.bsd
Initial commit
Diffstat (limited to 'graphics/pstex/makefile.bsd')
-rw-r--r--graphics/pstex/makefile.bsd40
1 files changed, 40 insertions, 0 deletions
diff --git a/graphics/pstex/makefile.bsd b/graphics/pstex/makefile.bsd
new file mode 100644
index 0000000000..d61bb3d406
--- /dev/null
+++ b/graphics/pstex/makefile.bsd
@@ -0,0 +1,40 @@
+#
+# Rules for pstex:
+#
+# Neil Hunt
+#
+# $Log: Makefile,v $
+# Revision 1.5 89/02/10 18:38:26 neil
+# Complete cleanup of pstex.
+# New files and headers.
+#
+# Revision 1.4 89/01/09 13:04:29 hunt
+# General updates.
+#
+# Revision 1.3 88/09/20 13:13:21 hunt
+# Added rules for pstex.
+#
+# Revision 1.2 88/08/04 13:00:07 hunt
+# Put back the missing quotes !
+#
+# Revision 1.1 88/08/04 12:27:10 hunt
+# Initial revision
+#
+
+CFLAG = -O
+
+OBJ = pstex.o args.o fopenp.o
+
+pstex: $(OBJ)
+ cc $(CFLAG) -o $@ $(OBJ)
+
+clean:
+ /bin/rm -f $(OBJ)
+veryclean:
+ /bin/rm -f pstex
+ make clean
+
+pstex.o: pstex.c std.h args.h
+args.o: args.c std.h args.h
+fopenp.o: fopenp.c std.h
+