diff options
author | Mattias Andrée <maandree@kth.se> | 2023-01-08 11:11:55 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-01-08 11:11:55 +0100 |
commit | aaf631e76df1e1a730b6a0ffb0d62b3ba661643e (patch) | |
tree | 1a737835a07eaebd3436a1fee19bf691f63d918b /Makefile | |
parent | Fix and test libfonts_get_default_font_name (diff) | |
download | libfonts-aaf631e76df1e1a730b6a0ffb0d62b3ba661643e.tar.gz libfonts-aaf631e76df1e1a730b6a0ffb0d62b3ba661643e.tar.bz2 libfonts-aaf631e76df1e1a730b6a0ffb0d62b3ba661643e.tar.xz |
Move test-todos into .c-files and add empty test functions
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -25,17 +25,12 @@ OBJ =\ libfonts_get_subpixel_order_class.o\ libfonts_unget_subpixel_order_class.o -TESTS =\ - libfonts_calculate_subpixel_order.test\ - libfonts_get_default_font_name.test\ - libfonts_get_subpixel_order_class.test\ - libfonts_unget_subpixel_order_class.test - HDR =\ common.h\ libfonts.h LOBJ = $(OBJ:.o=.lo) +TESTS = $(OBJ:.o=.test) all: libfonts.a libfonts.$(LIBEXT) $(TESTS) |