-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I got carried away and ended up streamlining the entire directory tree as part of the build system refactor. Fixes the second bullet from #163. Also deletes a bunch of dead code.
- Loading branch information
Showing
280 changed files
with
821 additions
and
1,535 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
AUTOMAKE_OPTIONS = foreign | ||
|
||
SUBDIRS = src/mod src/usr |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
AC_PREREQ([2.68]) | ||
AC_INIT([Jool], [3.5.7], [[email protected]]) | ||
AC_CONFIG_SRCDIR([common/jool.c]) | ||
AC_CONFIG_SRCDIR([src/common/xlat.h]) | ||
AM_INIT_AUTOMAKE([subdir-objects]) | ||
|
||
# Checks for programs. | ||
|
@@ -29,4 +29,8 @@ PKG_CHECK_MODULES(LIBNLGENL3, libnl-genl-3.0 >= 3.1) | |
PKG_CHECK_MODULES(XTABLES, xtables) | ||
|
||
# Spit out the makefiles. | ||
AC_OUTPUT(Makefile stateless/Makefile stateful/Makefile joold/Makefile) | ||
AC_OUTPUT(Makefile | ||
src/usr/Makefile | ||
src/usr/siit/Makefile | ||
src/usr/nat64/Makefile | ||
src/usr/joold/Makefile) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
git clean -dfx \ | ||
-e .cproject \ | ||
-e .project \ | ||
-e .settings \ | ||
-e .metadata \ | ||
-e Debug/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.