-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project reconfigured to use autotools/automake
- Loading branch information
Showing
12 changed files
with
141 additions
and
85 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,16 @@ | ||
This is the AUTHORS file for the vpr-extract project located at: | ||
https://github.com/0xvpr/vpr-extract | ||
|
||
Names should be inserted as follows: | ||
|
||
A: Alias Here | ||
C: Contact Information | ||
D: Description Here | ||
C: Copyright Information | ||
|
||
------------------------- | ||
|
||
A: VPR | ||
C: https://www.github.com/0xvpr (message me here) | ||
D: Original Author | ||
C: MIT |
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 @@ | ||
/usr/share/automake-1.16/COPYING |
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,2 @@ | ||
2023-MAY-10 -> VPR | ||
* Project reconfigured to build and install using GNU automake. |
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 @@ | ||
/usr/share/automake-1.16/INSTALL |
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_PROGRAMS = vpr-extract | ||
dist_doc_DATA = README.md | ||
AUTOMAKE_OPTIONS = subdir-objects | ||
|
||
vpr_extract_SOURCES = Sources/Main.cpp | ||
vpr_extract_CFLAGS = -std=c++17 -O2 -Wall -Wextra -Werror -Wshadow -Wpedantic -Wconversion \ | ||
-ffast-math -funroll-loops | ||
vpr_extract_LDFLAGS = -s |
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,2 @@ | ||
* 2023-MAY-10 | ||
Project reconfigured to build and install using GNU automake. |
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
This file was deleted.
Oops, something went wrong.
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,27 @@ | ||
dnl Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ([2.5]) | ||
AC_INIT([vpr-extract], [1.0], [[email protected]]) | ||
AC_CONFIG_SRCDIR([Sources/Main.cpp]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
|
||
dnl Checks for programs. | ||
AC_PROG_CXX | ||
AC_PROG_CC | ||
|
||
dnl Enable automake | ||
AM_INIT_AUTOMAKE([-Wall -Werror foreign]) | ||
|
||
dnl Checks for libraries. | ||
|
||
dnl Checks for header files. | ||
|
||
dnl Checks for typedefs, structures, and compiler characteristics. | ||
AC_C_INLINE | ||
AC_TYPE_UINT16_T | ||
AC_TYPE_UINT32_T | ||
|
||
dnl Checks for library functions. | ||
|
||
AC_CONFIG_FILES([Makefile]) | ||
AC_OUTPUT |