~ubuntu-branches/debian/jessie/arcboot/jessie

« back to all changes in this revision

Viewing changes to arclib/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Guido Guenther
  • Date: 2004-03-02 12:01:14 UTC
  • Revision ID: james.westby@ubuntu.com-20040302120114-0pukal9hlpt3k0l7
Tags: 0.3.8.1
correct subarch detection for IP32

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Copyright 1999 Silicon Graphics, Inc.
 
3
#
 
4
CFLAGS = -O -Werror -Wall -mno-abicalls -G 0 -fno-pic 
 
5
ASFLAGS= -mno-abicalls -G 0 -fno-pic
 
6
 
 
7
OBJECTS = arc.o stdio.o stdlib.o string.o
 
8
 
 
9
all:  libarc.a
 
10
 
 
11
libarc.a:  $(OBJECTS)
 
12
        rm -f $@
 
13
        $(AR) -cr $@ $(OBJECTS)
 
14
 
 
15
clean:
 
16
        rm -f libarc.a $(OBJECTS)