• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1AUTOMAKE_OPTIONS = foreign subdir-objects
2
3AM_CPPFLAGS = -I$(srcdir)/include
4AM_CFLAGS = -Wall -Wstrict-aliasing=2 -pedantic
5
6lib_LIBRARIES = libpseh.a
7
8libpseh_a_SOURCES = \
9  src/framebased.c \
10  src/i386/framebased-gcchack-asm.S \
11  src/i386/framebased-gcchack.c \
12  src/i386/framebased.S
13
14psehdir = $(includedir)/pseh
15framebaseddir = $(psehdir)/framebased
16
17pseh_HEADERS = \
18  include/pseh/pseh2.h \
19  include/pseh/framebased.h \
20  include/pseh/excpt.h \
21  include/pseh/pseh.h \
22  include/pseh/pseh2-common.h
23
24framebased_HEADERS = include/pseh/framebased/internal.h
25
26
27
28