diff options
author | Louie S <louie@example.com> | 2022-11-06 16:45:38 -0800 |
---|---|---|
committer | Louie S <louie@example.com> | 2022-11-06 16:45:38 -0800 |
commit | 877c49b49cd3da05dde1331a720c09369ff78f46 (patch) | |
tree | 688cb3b43bd18157b26d2cffa295d4898d6342dc | |
parent | 6fe505005d56abdee806eeb53669c9d0fce32214 (diff) |
Set automake mode to foreign (over gnu flavoring)
-rw-r--r-- | .gitignore | 8 | ||||
-rw-r--r-- | AUTHORS | 1 | ||||
-rw-r--r-- | COPYING | 0 | ||||
-rw-r--r-- | ChangeLog | 0 | ||||
-rw-r--r-- | INSTALL | 0 | ||||
-rw-r--r-- | NEWS | 0 | ||||
l--------- | README | 1 | ||||
-rw-r--r-- | configure.ac | 2 |
8 files changed, 2 insertions, 10 deletions
@@ -1,13 +1,7 @@ * !.gitignore -!AUTHORS -!ChangeLog -!COPYING -!INSTALL !Makefile.am -!NEWS -!README !configure.ac !docs @@ -15,8 +9,8 @@ !icon !icon/icon* !src -!src/Makefile.am !src/*.c +!src/Makefile.am !src/include !src/include/*.h !src/unix/ diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index ca9cbd4..0000000 --- a/AUTHORS +++ /dev/null @@ -1 +0,0 @@ -Louie Shprung diff --git a/COPYING b/COPYING deleted file mode 100644 index e69de29..0000000 --- a/COPYING +++ /dev/null diff --git a/ChangeLog b/ChangeLog deleted file mode 100644 index e69de29..0000000 --- a/ChangeLog +++ /dev/null diff --git a/INSTALL b/INSTALL deleted file mode 100644 index e69de29..0000000 --- a/INSTALL +++ /dev/null @@ -1 +0,0 @@ -docs/README.md
\ No newline at end of file diff --git a/configure.ac b/configure.ac index ca82896..1bebca6 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_INIT([terminal-media-launcher], [0.1], [lshprung@example.com]) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([foreign]) AC_PROG_CC |