diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-08-04 20:40:44 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-08-04 20:41:40 +0200 |
| commit | 920aed36f81bcce40c9f1c5bcda906a13e4fb5e4 (patch) | |
| tree | a62068cc334de9933140a2c9b5cbea70eef064ae /src | |
| parent | 5d6e434c896000c49a6953919acdcbaca8dfb86e (diff) | |
Start rewriting the build system
Good old makefiles should do the job.
Diffstat (limited to 'src')
| -rw-r--r-- | src/calculer.c | 4 | ||||
| -rw-r--r-- | src/cli.c | 1 | ||||
| -rw-r--r-- | src/disp.c | 1 | ||||
| -rw-r--r-- | src/ray.c | 1 |
4 files changed, 1 insertions, 6 deletions
diff --git a/src/calculer.c b/src/calculer.c index 6bf8fbb..a3512d0 100644 --- a/src/calculer.c +++ b/src/calculer.c @@ -15,8 +15,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "config.h" - #include <assert.h> #include <limits.h> #include <stdint.h> @@ -115,7 +113,7 @@ print_help(void) void print_version(void) { - printf("%s\n", VERSION); + printf("%s\n", CALCULER_VERSION); } void @@ -14,7 +14,6 @@ * 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 "config.h" #include <stdlib.h> #include <stdio.h> @@ -14,7 +14,6 @@ * 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 "config.h" #include <dlfcn.h> #include <limits.h> @@ -14,7 +14,6 @@ * 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 "config.h" #include <raylib.h> #include <stdbool.h> |
