blob: 9bb4b683add89ed97118c44f9d83fb5db265cc15 [file] [log] [blame]
Uwe Hermann7eb845e2008-11-02 17:01:06 +00001##
2## This file is part of the bayou project.
3##
4## Copyright (C) 2008 Advanced Micro Devices, Inc.
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License version 2 as
8## published by the Free Software Foundation.
9##
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14##
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Uwe Hermann7eb845e2008-11-02 17:01:06 +000018##
19
Stefan Reinauer7b769122010-04-20 23:04:46 +000020HOSTCC = gcc
21AR?=ar
Uwe Hermann7eb845e2008-11-02 17:01:06 +000022LAROBJS = self.o lib.o
23CFLAGS = -g -Wall
24
25liblar.a: $(LAROBJS)
Stefan Reinauer7b769122010-04-20 23:04:46 +000026 $(AR) rc $@ $(LAROBJS)
Uwe Hermann7eb845e2008-11-02 17:01:06 +000027
28%.o: %.c
Stefan Reinauer7b769122010-04-20 23:04:46 +000029 $(HOSTCC) -c $(CFLAGS) -o $@ $<
Uwe Hermann7eb845e2008-11-02 17:01:06 +000030
31clean:
32 rm -f liblar.a *.o