16 lines
307 B
Makefile
16 lines
307 B
Makefile
AM_CPPFLAGS = $(SDL_CFLAGS) $(WZ_CPPFLAGS)
|
|
AM_CFLAGS = $(WZ_CFLAGS)
|
|
noinst_LIBRARIES = libexceptionhandler.a
|
|
noinst_HEADERS = \
|
|
dumpinfo.h \
|
|
exceptionhandler.h \
|
|
exchndl.h
|
|
|
|
libexceptionhandler_a_SOURCES = \
|
|
dumpinfo.cpp \
|
|
exceptionhandler.c
|
|
|
|
if MINGW32
|
|
libexceptionhandler_a_SOURCES += exchndl.c
|
|
endif
|