diff options
| author | Ray Strode <rstrode@redhat.com> | 2007-06-06 18:13:17 -0400 |
|---|---|---|
| committer | Ray Strode <rstrode@redhat.com> | 2007-06-06 18:13:17 -0400 |
| commit | b157f818ac219a1a4a60619250b521d430576e83 (patch) | |
| tree | 012f7555b793a2f3d5910d2080f8fdfaeaf867c3 /src/libply/Makefile.am | |
| parent | 177a24020be55bfa9716cb6ebbfd018cfdf46416 (diff) | |
| download | plymouth-b157f818ac219a1a4a60619250b521d430576e83.tar.gz plymouth-b157f818ac219a1a4a60619250b521d430576e83.tar.xz plymouth-b157f818ac219a1a4a60619250b521d430576e83.zip | |
split the common code off into libply and move things to separate directories
Diffstat (limited to 'src/libply/Makefile.am')
| -rw-r--r-- | src/libply/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/libply/Makefile.am b/src/libply/Makefile.am new file mode 100644 index 0000000..3c184cc --- /dev/null +++ b/src/libply/Makefile.am @@ -0,0 +1,26 @@ +SUBDIRS = +INCLUDES = -I$(top_srcdir) \ + -I$(srcdir) + +lib_LTLIBRARIES = libply.la + +libply_la_CFLAGS = $(PLYMOUTH_CFLAGS) +libply_la_LIBADD = $(PLYMOUTH_LIBS) +libply_la_SOURCES = ply-event-loop.c \ + ply-event-loop.h \ + ply-frame-buffer.h \ + ply-frame-buffer.c \ + ply-list.c \ + ply-list.h \ + ply-logger.c \ + ply-logger.h \ + ply-image.c \ + ply-image.h \ + ply-terminal.c \ + ply-terminal.h \ + ply-terminal-session.c \ + ply-terminal-session.h \ + ply-utils.c \ + ply-utils.h + +MAINTAINERCLEANFILES = Makefile.in |
