pokebell 0.1.0

Pocket bell (Pager) 2 touch input mutual conversion library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
CXX := clang++
CFLAGS := -g -Wall -std=c++11
LDFLAGS := -L../../debug
LIBS := -lpokebell
SRCS := main.cpp

all: build

cargo:
	cargo build --target-dir ../..

build: cargo
	$(CXX) -o example $(CFLAGS) $(LDFLAGS) $(LIBS) $(SRCS)