Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Sunxi Tools
Commits
020f001c
Commit
020f001c
authored
May 10, 2012
by
Alejandro Mery
Browse files
fexc: add do-nothing `fexc` tool
parent
352188a3
Changes
4
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
020f001c
fexc
bin2fex
bin2fex
fex2bin
fex2bin
*.o
*.o
...
...
Makefile
View file @
020f001c
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
...
...
fexc.c
0 → 100644
View file @
020f001c
/*
* 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
;
}
fexc.h
0 → 100644
View file @
020f001c
/*
* 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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment