blob: 03612f704af1cff785654b6276321a62b0138a9f [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##
Uwe Hermann7eb845e2008-11-02 17:01:06 +000015
Stefan Reinauer7b769122010-04-20 23:04:46 +000016HOSTCC = gcc
17AR?=ar
Uwe Hermann7eb845e2008-11-02 17:01:06 +000018LAROBJS = self.o lib.o
19CFLAGS = -g -Wall
20
21liblar.a: $(LAROBJS)
Stefan Reinauer7b769122010-04-20 23:04:46 +000022 $(AR) rc $@ $(LAROBJS)
Uwe Hermann7eb845e2008-11-02 17:01:06 +000023
24%.o: %.c
Stefan Reinauer7b769122010-04-20 23:04:46 +000025 $(HOSTCC) -c $(CFLAGS) -o $@ $<
Uwe Hermann7eb845e2008-11-02 17:01:06 +000026
27clean:
28 rm -f liblar.a *.o