Skip to content

Commit a875509

Browse files
committed
Add missing src to sources list
1 parent 4b1d793 commit a875509

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

Makefile.am

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,21 @@ EXTRA_DIST = \
77
autogen.sh \
88
balls.png \
99
obama.jpg \
10-
$(shell find gtest)
10+
$(shell find gtest -type f | grep -v /.deps/ | grep -v \\.o\$)
1111

1212
bin_PROGRAMS = hiptext
1313
noinst_LIBRARIES = libhiptext.a libgtest.a
1414

15+
distclean-local:
16+
rm -f src/pixel_parse.cc
17+
1518
################################################################################
1619
## libhiptext.a
1720

1821
libhiptext_a_SOURCES = \
1922
src/artiste.cc \
2023
src/charquantizer.cc \
24+
src/css_color.rl \
2125
src/font.cc \
2226
src/graphic.cc \
2327
src/hiptext.cc \
@@ -58,8 +62,6 @@ libhiptext_a_CPPFLAGS = \
5862
$(LIBPNG_CFLAGS) \
5963
$(LIBSWSCALE_CFLAGS)
6064

61-
src/pixel_parse.cc: src/pixel_parse.rl
62-
6365
################################################################################
6466
## hiptext
6567

@@ -116,5 +118,5 @@ hiptext_test_LDADD = \
116118
## miscellaneous
117119

118120
src/%.cc: src/%.rl
119-
@echo " RL " $@;
121+
@echo " RL " $@;
120122
@$(RAGEL) -G2 -o $@ $<

0 commit comments

Comments
 (0)