Skip to content

Commit

Permalink
Replace argparse with my own argument parsing code
Browse files Browse the repository at this point in the history
  • Loading branch information
plusvic committed Nov 22, 2014
1 parent 3234c4b commit 116b5e1
Show file tree
Hide file tree
Showing 14 changed files with 456 additions and 1,239 deletions.
12 changes: 6 additions & 6 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
AM_CFLAGS=-O3 -std=gnu99 -Wall -I$(srcdir)/libyara/include

# Build the library in the hand subdirectory first.
SUBDIRS = libyara argparse
DIST_SUBDIRS = libyara argparse
SUBDIRS = libyara
DIST_SUBDIRS = libyara

ACLOCAL_AMFLAGS=-I m4

bin_PROGRAMS = yara yarac

yara_SOURCES = threading.c threading.h yara.c
yara_LDADD = libyara/.libs/libyara.a argparse/libargparse.a
yara_SOURCES = args.c args.h threading.c threading.h yara.c
yara_LDADD = libyara/.libs/libyara.a

yarac_SOURCES = yarac.c
yarac_LDADD = libyara/.libs/libyara.a argparse/libargparse.a
yarac_SOURCES = args.c args.h yarac.c
yarac_LDADD = libyara/.libs/libyara.a

# man pages
man1_MANS = yara.man yarac.man
Expand Down
5 changes: 0 additions & 5 deletions argparse/.gitignore

This file was deleted.

5 changes: 0 additions & 5 deletions argparse/.travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions argparse/LICENSE

This file was deleted.

89 changes: 0 additions & 89 deletions argparse/README.md

This file was deleted.

Loading

0 comments on commit 116b5e1

Please sign in to comment.