diff options
author | Libreboot Contributor <contributor@libreboot.org> | 2020-04-02 20:59:23 +0200 |
---|---|---|
committer | Libreboot Contributor <contributor@libreboot.org> | 2020-04-02 20:59:43 +0200 |
commit | a2f4bef6de0e1f5770d489e861c78890f81229c1 (patch) | |
tree | bc74ce87d44cfcae1eecff62c0fbf6a97b1812fc /i18n/fr_FR/resources/utilities/ich9deblob/Makefile | |
parent | c6cb6cf4769cd535eee9abfd41fbf717a51d067c (diff) | |
download | librebootfr-a2f4bef6de0e1f5770d489e861c78890f81229c1.tar.gz librebootfr-a2f4bef6de0e1f5770d489e861c78890f81229c1.zip |
link to french version of gplv3 at the top of i18n/fr_FR/COPYING . Also, we remove files that we haven't translated yet, it weights a lot.
Diffstat (limited to 'i18n/fr_FR/resources/utilities/ich9deblob/Makefile')
-rw-r--r-- | i18n/fr_FR/resources/utilities/ich9deblob/Makefile | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/i18n/fr_FR/resources/utilities/ich9deblob/Makefile b/i18n/fr_FR/resources/utilities/ich9deblob/Makefile deleted file mode 100644 index dad57e7f..00000000 --- a/i18n/fr_FR/resources/utilities/ich9deblob/Makefile +++ /dev/null @@ -1,92 +0,0 @@ -# -# Makefile for ich9deblob utility from libreboot project -# -# Copyright (C) 2014, 2015 Leah Rowe <info@minifree.org> -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# 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. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. -# - -CC=gcc -FORCEC99=-std=c99 -CFLAGS=-I. -Wall -Wextra -g $(FORCEC99) -NOLINKER=-c - -all: ich9deblob ich9gen demefactory - -ich9deblob: obj/ich9deblob.o obj/common/descriptor_gbe.o \ - obj/descriptor/descriptor.o obj/gbe/gbe.o obj/common/x86compatibility.o - - $(CC) $(CFLAGS) obj/ich9deblob.o obj/common/descriptor_gbe.o \ - obj/common/x86compatibility.o obj/descriptor/descriptor.o obj/gbe/gbe.o \ - -o ich9deblob - -ich9gen: obj/ich9gen.o obj/ich9gen/mkdescriptor.o obj/ich9gen/mkgbe.o \ - obj/common/descriptor_gbe.o \ - obj/descriptor/descriptor.o obj/gbe/gbe.o obj/common/x86compatibility.o - - $(CC) $(CFLAGS) obj/ich9gen.o obj/ich9gen/mkdescriptor.o obj/ich9gen/mkgbe.o \ - obj/common/descriptor_gbe.o \ - obj/common/x86compatibility.o obj/descriptor/descriptor.o obj/gbe/gbe.o \ - -o ich9gen - -demefactory: obj/demefactory.o obj/common/descriptor_gbe.o \ - obj/descriptor/descriptor.o obj/gbe/gbe.o obj/common/x86compatibility.o - - $(CC) $(CFLAGS) obj/demefactory.o obj/common/descriptor_gbe.o \ - obj/common/x86compatibility.o obj/descriptor/descriptor.o obj/gbe/gbe.o \ - -o demefactory - -# for demefactory -# ---------------------------------------------------------------------- - -obj/demefactory.o: - $(CC) $(CFLAGS) $(NOLINKER) src/demefactory.c -o obj/demefactory.o - -# for ich9deblob -# ---------------------------------------------------------------------- - -obj/ich9deblob.o: - $(CC) $(CFLAGS) $(NOLINKER) src/ich9deblob.c -o obj/ich9deblob.o - -# for ich9gen -# ---------------------------------------------------------------------- - -obj/ich9gen.o: - $(CC) $(CFLAGS) $(NOLINKER) src/ich9gen.c -o obj/ich9gen.o - -obj/ich9gen/mkdescriptor.o: - $(CC) $(CFLAGS) $(NOLINKER) src/ich9gen/mkdescriptor.c -o obj/ich9gen/mkdescriptor.o - -obj/ich9gen/mkgbe.o: - $(CC) $(CFLAGS) $(NOLINKER) src/ich9gen/mkgbe.c -o obj/ich9gen/mkgbe.o - -# for demefactory, ich9deblob and ich9gen: -# ---------------------------------------------------------------------- - -obj/common/descriptor_gbe.o: - $(CC) $(CFLAGS) $(NOLINKER) src/common/descriptor_gbe.c -o obj/common/descriptor_gbe.o - -obj/common/x86compatibility.o: - $(CC) $(CFLAGS) $(NOLINKER) src/common/x86compatibility.c -o obj/common/x86compatibility.o - -obj/descriptor/descriptor.o: - $(CC) $(CFLAGS) $(NOLINKER) src/descriptor/descriptor.c -o obj/descriptor/descriptor.o - -obj/gbe/gbe.o: - $(CC) $(CFLAGS) $(NOLINKER) src/gbe/gbe.c -o obj/gbe/gbe.o - -# make clean -# ---------------------------------------------------------------------- -clean: - rm -Rf ich9deblob ich9gen demefactory obj/*.o obj/*/*.o |