diff options
Diffstat (limited to 'intf/Makefile')
-rw-r--r-- | intf/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/intf/Makefile b/intf/Makefile new file mode 100644 index 0000000..4552ec1 --- /dev/null +++ b/intf/Makefile @@ -0,0 +1,10 @@ +TARGETS= collate2imp +all: $(TARGETS) + +clean: + rm $(TARGETS) + +.cpp: + g++ -O0 -g `pkg-config --cflags sword` $< -o $@ `pkg-config --libs sword` + + |