Skip to content

Commit

Permalink
small doc and make cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
mdrasmus committed Sep 15, 2013
1 parent fc211e0 commit 34678a8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
13 changes: 6 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ PKG=$(DIST)/$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_DIR=$(DIST)/$(PKG_NAME)-$(PKG_VERSION)

# program files
SCRIPTS =
SCRIPTS = bin/*
PROGS = bin/arg-sample
BINARIES = $(PROGS) $(SCRIPTS)

Expand Down Expand Up @@ -109,6 +109,8 @@ LIBARGWEAVER_OBJS = $(ARGWEAVER_OBJS)
#=============================================================================
# targets

.PHONY: all pkg test cq install clean cleanobj lib pylib

# default targets
all: $(PROGS) $(LIBARGWEAVER) $(LIBARGWEAVER_SHARED)

Expand All @@ -132,20 +134,17 @@ $(LIBARGWEAVER_SHARED): $(LIBARGWEAVER_OBJS)
#-----------------------------
# packaging

pkg:
mkdir -p $(DIST)
git archive --format=tar --prefix=$(PKG_NAME)-$(PKG_VERSION)/ HEAD | \
gzip > $(PKG)
pkg: $(PKG)

$(PKG):
mkdir -p $(DIST)
git archive --format=tar --prefix=$(PKG_NAME)-$(PKG_VERSION)/ | \
git archive --format=tar --prefix=$(PKG_NAME)-$(PKG_VERSION)/ HEAD | \
gzip > $(PKG)

#-----------------------------
# testing

testing:
test:
nosetests -v test

cq:
Expand Down
2 changes: 1 addition & 1 deletion examples/example-analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# commands work.
#
# For documentation on all of ARGweaver's file formats, see
# doc/dlcoal_manual.html
# doc/argweaver_manual.html
#

#=============================================================================
Expand Down
4 changes: 2 additions & 2 deletions test/test_codequality.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,9 @@ def test_pep8():
raise Exception()


def _test_arghmm():
def test_arghmm():
"""
See if argweaver is used anywhere within the code.
See if arghmm is used anywhere within the code.
"""

def key(line):
Expand Down

0 comments on commit 34678a8

Please sign in to comment.