~ubuntu-branches/ubuntu/wily/gargoyle-free/wily-proposed

« back to all changes in this revision

Viewing changes to terps/alan2/arun.make

  • Committer: Package Import Robot
  • Author(s): Sylvain Beucler
  • Date: 2013-07-28 13:38:56 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20130728133856-4k6uc864wzsnrx04
Tags: 2011.1a-1
* New upstream release
* Alan 2 interpreter is now Free Software, include it
* Update fonts package names in dependencies (Closes: #715160)
* Bump Standards-Version to 3.9.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
! Makefile for arun on VAX                    Date: 93-10-24/THONI@_GOLLUM
 
2
!
 
3
 
 
4
CQ =/STANDARD=PORTABLE
 
5
 
 
6
OBJECTS = arun.obj args.obj debug.obj exe.obj inter.obj parse.obj rules.obj stack.obj params.obj term.obj decode.obj sysdep.obj reverse.obj
 
7
 
 
8
arun.obj : arun.c
 
9
 
 
10
args.obj : args.c
 
11
 
 
12
debug.obj : debug.c
 
13
 
 
14
exe.obj : exe.c
 
15
 
 
16
inter.obj : inter.c
 
17
 
 
18
parse.obj : parse.c
 
19
 
 
20
rules.obj : rules.c
 
21
 
 
22
stack.obj : stack.c
 
23
 
 
24
term.obj : term.c
 
25
 
 
26
params.obj : params.c
 
27
 
 
28
decode.obj : decode.c
 
29
 
 
30
reverse.obj : reverse.c
 
31
 
 
32
sysdep.obj : sysdep.c
 
33
 
 
34
version.obj : version.c
 
35
 
 
36
arun.exe : #(OBJECTS) version.obj
 
37
        $ link/exe=arun #(LQ) arun.obj,args.obj,debug.obj,exe.obj,inter.obj,parse.obj,rules.obj,stack.obj,params.obj,term.obj,decode.obj,reverse.obj,sysdep.obj,version.obj
 
38
        $ copy arun.exe <->
 
39