forked from devkitPro/tex3ds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
51 lines (42 loc) · 1.61 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Makefile.am -- Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = subdir-objects
bin_PROGRAMS = tex3ds mkbcfnt
tex3ds_SOURCES = source/atlas.cpp \
source/encode.cpp \
source/huff.cpp \
source/lzss.cpp \
source/magick_compat.cpp \
source/rg_etc1.cpp \
source/rle.cpp \
source/swizzle.cpp \
source/tex3ds.cpp \
source/utility.cpp \
include/atlas.h \
include/compress.h \
include/encode.h \
include/future.h \
include/magick_compat.h \
include/quantum.h \
include/rg_etc1.h \
include/subimage.h \
include/swizzle.h \
include/utility.h
mkbcfnt_SOURCES = source/bcfnt.cpp \
source/freetype.cpp \
source/magick_compat.cpp \
source/mkbcfnt.cpp \
source/swizzle.cpp \
source/threadPool.cpp \
include/bcfnt.h \
include/freetype.h \
include/future.h \
include/magick_compat.h \
include/swizzle.h \
include/threadPool.h
AM_CXXFLAGS = -I$(srcdir)/include -D_GNU_SOURCE $(ImageMagick_CFLAGS)
tex3ds_LDADD = $(ImageMagick_LIBS)
mkbcfnt_LDADD = $(FreeType_LIBS) $(ImageMagick_LIBS)
mkbcfnt_CXXFLAGS = $(FreeType_CFLAGS) $(AM_CXXFLAGS)
EXTRA_DIST = autogen.sh
format:
clang-format -i include/*.h source/*.cpp