aboutsummaryrefslogtreecommitdiff
path: root/payloads/bayou/util/pbuilder/liblar/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'payloads/bayou/util/pbuilder/liblar/Makefile')
-rw-r--r--payloads/bayou/util/pbuilder/liblar/Makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/payloads/bayou/util/pbuilder/liblar/Makefile b/payloads/bayou/util/pbuilder/liblar/Makefile
deleted file mode 100644
index 03612f704a..0000000000
--- a/payloads/bayou/util/pbuilder/liblar/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-##
-## This file is part of the bayou project.
-##
-## Copyright (C) 2008 Advanced Micro Devices, Inc.
-##
-## This program is free software; you can redistribute it and/or modify
-## it under the terms of the GNU General Public License version 2 as
-## published by the Free Software Foundation.
-##
-## This program is distributed in the hope that it will be useful,
-## but WITHOUT ANY WARRANTY; without even the implied warranty of
-## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-## GNU General Public License for more details.
-##
-
-HOSTCC = gcc
-AR?=ar
-LAROBJS = self.o lib.o
-CFLAGS = -g -Wall
-
-liblar.a: $(LAROBJS)
- $(AR) rc $@ $(LAROBJS)
-
-%.o: %.c
- $(HOSTCC) -c $(CFLAGS) -o $@ $<
-
-clean:
- rm -f liblar.a *.o