data struct for synonym groups
This commit is contained in:
parent
b1c5f5b96e
commit
34e7ad0936
2 changed files with 10 additions and 1 deletions
|
@ -67,6 +67,8 @@ common/rclconfig.cpp \
|
||||||
common/rclconfig.h \
|
common/rclconfig.h \
|
||||||
common/rclinit.cpp \
|
common/rclinit.cpp \
|
||||||
common/rclinit.h \
|
common/rclinit.h \
|
||||||
|
common/syngroups.cpp \
|
||||||
|
common/syngroups.h \
|
||||||
common/textsplit.cpp \
|
common/textsplit.cpp \
|
||||||
common/textsplit.h \
|
common/textsplit.h \
|
||||||
common/unacpp.cpp \
|
common/unacpp.cpp \
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
PROGS = unacpp textsplit rclconfig
|
PROGS = unacpp textsplit rclconfig syngroups
|
||||||
|
|
||||||
all: $(PROGS)
|
all: $(PROGS)
|
||||||
|
|
||||||
|
@ -23,4 +23,11 @@ trrclconfig.o : rclconfig.cpp
|
||||||
$(CXX) $(ALL_CXXFLAGS) -DTEST_RCLCONFIG -c -o trrclconfig.o \
|
$(CXX) $(ALL_CXXFLAGS) -DTEST_RCLCONFIG -c -o trrclconfig.o \
|
||||||
rclconfig.cpp
|
rclconfig.cpp
|
||||||
|
|
||||||
|
SYNGROUPS_OBJS= trsyngroups.o
|
||||||
|
syngroups : $(SYNGROUPS_OBJS)
|
||||||
|
$(CXX) $(ALL_CXXFLAGS) -o syngroups $(SYNGROUPS_OBJS) $(LIBRECOLL)
|
||||||
|
trsyngroups.o : syngroups.cpp
|
||||||
|
$(CXX) $(ALL_CXXFLAGS) -DTEST_SYNGROUPS -c -o trsyngroups.o \
|
||||||
|
syngroups.cpp
|
||||||
|
|
||||||
include ../utils/utmkdefs.mk
|
include ../utils/utmkdefs.mk
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue