CXXFLAGS=-g -O0 -Wall -W -ansi #-pedantic
LDFLAGS=-ls11n

s11ntest: s11ntest.o
cltest: cltest.o

.PHONY: runs11n
runs11n:: s11ntest
	@./$<

.PHONY: debugs11n
debugs11n:: s11ntest
	@gdb -q ./$<

.PHONY: runcl
runcl:: cltest
	@./$<

.PHONY: debugcl
debucl:: cltest
	@gdb -q ./$<

.PHONY: clean
clean::
	rm -f $(wildcard *.o) s11ntest cltest $(wildcard *.s11n)
