Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Side by Side Diff: opcodes/makefile.vms

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « opcodes/m68k-dis.c ('k') | opcodes/metag-dis.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Makefile for libopcodes under openVMS 2 # Makefile for libopcodes under openVMS
3 # 3 #
4 # For use with gnu-make for vms 4 # For use with gnu-make for vms
5 # 5 #
6 # Created by Klaus K"ampf, kkaempf@progis.de 6 # Created by Klaus K"ampf, kkaempf@progis.de
7 # 7 #
8 # Copyright 2012 Free Software Foundation
9 #
10 # This file is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; see the file COPYING3. If not see
22 # <http://www.gnu.org/licenses/>.
8 # 23 #
9 24
10 ifeq ($(ARCH),IA64) 25 ifeq ($(ARCH),IA64)
11 OBJS=ia64-dis.obj,ia64-opc.obj 26 OBJS=ia64-dis.obj,ia64-opc.obj
12 ARCHDEF="ARCH_ia64" 27 ARCHDEF="ARCH_ia64"
13 endif 28 endif
14 ifeq ($(ARCH),ALPHA) 29 ifeq ($(ARCH),ALPHA)
15 OBJS=alpha-dis.obj,alpha-opc.obj 30 OBJS=alpha-dis.obj,alpha-opc.obj
16 ARCHDEF="ARCH_alpha" 31 ARCHDEF="ARCH_alpha"
17 endif 32 endif
(...skipping 15 matching lines...) Expand all
33 endif 48 endif
34 49
35 libopcodes.olb: $(OBJS) 50 libopcodes.olb: $(OBJS)
36 purge 51 purge
37 lib/create libopcodes *.obj 52 lib/create libopcodes *.obj
38 53
39 clean: 54 clean:
40 $$ purge 55 $$ purge
41 $(RM) *.obj; 56 $(RM) *.obj;
42 $(RM) libopcodes.olb; 57 $(RM) libopcodes.olb;
OLDNEW
« no previous file with comments | « opcodes/m68k-dis.c ('k') | opcodes/metag-dis.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698