Commit 020f001c authored by Alejandro Mery's avatar Alejandro Mery
Browse files

fexc: add do-nothing `fexc` tool

parent 352188a3
fexc
bin2fex bin2fex
fex2bin fex2bin
*.o *.o
......
CC = gcc CC = gcc
CFLAGS = -g -O2 -Wall -Wextra -std=c99 CFLAGS = -g -O2 -Wall -Wextra -std=c99
TOOLS = bin2fex fex2bin TOOLS = fexc bin2fex fex2bin
.PHONY: all clean .PHONY: all clean
......
/*
* Copyright (C) 2012 Alejandro Mery <amery@geeks.cl>
*
* 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/>.
*/
#include "fexc.h"
int main(int UNUSED(argc), char *UNUSED(argv[]))
{
return 1;
}
/*
* Copyright (C) 2012 Alejandro Mery <amery@geeks.cl>
*
* 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/>.
*/
#ifndef _SUNXI_TOOLS_FEXC_H
#define _SUNXI_TOOLS_FEXC_H
#include "common.h"
#endif
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment