summaryrefslogtreecommitdiff
path: root/support/poster/vms/descrip.mms
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 /support/poster/vms/descrip.mms
Initial commit
Diffstat (limited to 'support/poster/vms/descrip.mms')
-rw-r--r--support/poster/vms/descrip.mms15
1 files changed, 15 insertions, 0 deletions
diff --git a/support/poster/vms/descrip.mms b/support/poster/vms/descrip.mms
new file mode 100644
index 0000000000..a83cdf8c5f
--- /dev/null
+++ b/support/poster/vms/descrip.mms
@@ -0,0 +1,15 @@
+
+# Makefile for poster (VMS)
+# Rolf Niepraschk 2/98, niepraschk@ptb.de
+
+all : poster.exe
+
+poster.exe : poster.obj getopt.obj
+ LINK /EXE=$@ $+
+
+clean :
+ IF F$SEARCH("poster.obj",).NES."" THEN DELETE poster.obj;*
+ IF F$SEARCH("getopt.obj",).NES."" THEN DELETE getopt.obj;*
+
+veryclean : clean
+ IF F$SEARCH("poster.exe",).NES."" THEN DELETE poster.exe;*