Move tsm.h to libtsm.h
authorDavid Herrmann <dh.herrmann@gmail.com>
Sat, 17 Aug 2013 12:49:43 +0000 (14:49 +0200)
committerDavid Herrmann <dh.herrmann@gmail.com>
Sat, 17 Aug 2013 12:49:43 +0000 (14:49 +0200)
I want to get rid of the header mess and move everything public into a
proper single public header. There is no reason to keep everything
separate once we make libtsm a proper library.

Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Makefile.am
src/libtsm.h [moved from src/tsm.h with 96% similarity]

index 8bfd431..67a72d8 100644 (file)
@@ -115,11 +115,11 @@ include_HEADERS += \
        src/tsm_screen.h \
        src/tsm_unicode.h \
        src/tsm_vte.h \
-       src/tsm.h
+       src/libtsm.h
 pkgconfig_DATA += docs/libtsm.pc
 
 libtsm_la_SOURCES = \
-       src/tsm.h \
+       src/libtsm.h \
        src/tsm_unicode.h \
        src/tsm_unicode.c \
        src/tsm_screen.h \
similarity index 96%
rename from src/tsm.h
rename to src/libtsm.h
index ae39617..9ac5009 100644 (file)
--- a/src/tsm.h
  * available TSM headers for you.
  */
 
-#ifndef TSM_H
-#define TSM_H
+#ifndef LIBTSM_H
+#define LIBTSM_H
 
 #include <tsm_unicode.h>
 #include <tsm_screen.h>
 #include <tsm_vte.h>
 
-#endif /* TSM_H */
+#endif /* LIBTSM_H */