Parent: [d2f7f1] (diff)

Download this file

Makefile    13 lines (10 with data), 319 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
PROGS = rclaspell
all: $(PROGS)
RCLASPELL_OBJS= trrclaspell.o
rclaspell : $(RCLASPELL_OBJS)
$(CXX) $(ALL_CXXFLAGS) -o rclaspell $(RCLASPELL_OBJS) \
$(LIBRECOLL)
trrclaspell.o : rclaspell.cpp
$(CXX) $(ALL_CXXFLAGS) -DTEST_RCLASPELL -c -o trrclaspell.o \
rclaspell.cpp
include ../utils/utmkdefs.mk