Files @ 031a33ecd5cb
Branch filter:

Location: workgroups2/Makefile

Sergey Pashinin
fix for #15

Checking arguments for positioning of the frame.
Sometimes it's not just an integer.
# -*- Makefile -*-

EMACS = emacs

TEST_DIR = src
TRAVIS_FILE = .travis.yml

# Compile with noninteractive and relatively clean environment.
BATCHFLAGS = -batch -q --no-site-file

test:
	${EMACS} -L src $(BATCHFLAGS) -f batch-byte-compile $(TEST_DIR)/*.el
# wg-mode-line-string
	${EMACS} -L src -batch -l cl.el -l workgroups-functions.el --eval '(message (wg-mode-line-string))'

test-ido:
	emacs -Q -L src -l cl.el -l ido.el -l workgroups2.el --eval "(ido-mode t)" --eval "(workgroups-mode 1)"