-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed -Wno-portability, added -Wall and -Werror, fixed errors that …
…occured and included header files as dependencies to make them included in release when doing "make dist"
- Loading branch information
Showing
10 changed files
with
371 additions
and
55 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
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 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 |
---|---|---|
@@ -1,20 +1,41 @@ | ||
AM_CFLAGS = -I$(top_srcdir)/src | ||
### Include common Makefile configuration | ||
# | ||
include $(top_srcdir)/build/Makefile.am.common | ||
|
||
|
||
|
||
### Include | ||
# | ||
AM_CFLAGS += -I$(top_srcdir)/src | ||
|
||
|
||
|
||
### Create one library with all snoopy inputs collected in it | ||
# | ||
noinst_LTLIBRARIES = libsnoopy_inputs_all.la | ||
|
||
|
||
### Inputs collection is made of the following files | ||
|
||
### Input providers collection is made of the following files | ||
# | ||
# Please maintain alphabetical order, equal to what `ls` would do | ||
# | ||
libsnoopy_inputs_all_la_SOURCES = \ | ||
cmdline.c \ | ||
cmdline.h \ | ||
cwd.c \ | ||
cwd.h \ | ||
egid.c \ | ||
egid.h \ | ||
euid.c \ | ||
euid.h \ | ||
filename.c \ | ||
filename.h \ | ||
gid.c \ | ||
gid.h \ | ||
sid.c \ | ||
sid.h \ | ||
tty.c \ | ||
uid.c | ||
tty.h \ | ||
uid.c \ | ||
uid.h |
Oops, something went wrong.