|
Revision 571, 3.3 kB
(checked in by reinelt, 4 years ago)
|
|
[lcd4linux @ 2005-06-10 05:00:36 by reinelt]
version number set to 0.10.0
|
| Line | |
|---|
| 1 | # Process this file with automake to produce Makefile.in |
|---|
| 2 | |
|---|
| 3 | AUTOMAKE_OPTIONS = gnu |
|---|
| 4 | CLEANFILES = *~ |
|---|
| 5 | DRIVERS=@DRIVERS@ |
|---|
| 6 | PLUGINS=@PLUGINS@ |
|---|
| 7 | |
|---|
| 8 | bin_PROGRAMS = lcd4linux |
|---|
| 9 | |
|---|
| 10 | AM_CFLAGS = -D_GNU_SOURCE -Wall -W |
|---|
| 11 | |
|---|
| 12 | lcd4linux_LDFLAGS = |
|---|
| 13 | lcd4linux_LDADD = @DRIVERS@ @PLUGINS@ @DRVLIBS@ @PLUGINLIBS@ |
|---|
| 14 | lcd4linux_DEPENDENCIES = @DRIVERS@ @PLUGINS@ |
|---|
| 15 | |
|---|
| 16 | lcd4linux_SOURCES = \ |
|---|
| 17 | lcd4linux.c \ |
|---|
| 18 | cfg.c cfg.h \ |
|---|
| 19 | debug.c debug.h \ |
|---|
| 20 | drv.c drv.h \ |
|---|
| 21 | evaluator.c evaluator.h \ |
|---|
| 22 | hash.c hash.h \ |
|---|
| 23 | layout.c layout.h \ |
|---|
| 24 | pid.c pid.h \ |
|---|
| 25 | timer.c timer.h \ |
|---|
| 26 | thread.c thread.h \ |
|---|
| 27 | udelay.c udelay.h \ |
|---|
| 28 | qprintf.c qprintf.h \ |
|---|
| 29 | \ |
|---|
| 30 | widget.c widget.h \ |
|---|
| 31 | widget_text.c widget_text.h \ |
|---|
| 32 | widget_bar.c widget_bar.h \ |
|---|
| 33 | widget_icon.c widget_icon.h \ |
|---|
| 34 | \ |
|---|
| 35 | plugin.c plugin.h \ |
|---|
| 36 | plugin_cfg.c \ |
|---|
| 37 | plugin_math.c \ |
|---|
| 38 | plugin_string.c \ |
|---|
| 39 | plugin_test.c \ |
|---|
| 40 | plugin_time.c |
|---|
| 41 | |
|---|
| 42 | EXTRA_lcd4linux_SOURCES= \ |
|---|
| 43 | drv_generic_text.c \ |
|---|
| 44 | drv_generic_text.h \ |
|---|
| 45 | drv_generic_graphic.c \ |
|---|
| 46 | drv_generic_graphic.h \ |
|---|
| 47 | drv_generic_serial.c \ |
|---|
| 48 | drv_generic_serial.h \ |
|---|
| 49 | drv_generic_parport.c \ |
|---|
| 50 | drv_generic_parport.h \ |
|---|
| 51 | drv_generic_i2c.c \ |
|---|
| 52 | drv_generic_i2c.h \ |
|---|
| 53 | drv_BeckmannEgle.c \ |
|---|
| 54 | drv_BWCT.c \ |
|---|
| 55 | drv_Crystalfontz.c \ |
|---|
| 56 | drv_Curses.c \ |
|---|
| 57 | drv_Cwlinux.c \ |
|---|
| 58 | drv_HD44780.c \ |
|---|
| 59 | drv_Image.c \ |
|---|
| 60 | drv_LCDLinux.c \ |
|---|
| 61 | drv_LCDLinux.h \ |
|---|
| 62 | drv_LCDTerm.c \ |
|---|
| 63 | drv_M50530.c \ |
|---|
| 64 | drv_MatrixOrbital.c \ |
|---|
| 65 | drv_MilfordInstruments.c \ |
|---|
| 66 | drv_Noritake.c \ |
|---|
| 67 | drv_NULL.c \ |
|---|
| 68 | drv_RouterBoard.c \ |
|---|
| 69 | drv_serdisplib.c \ |
|---|
| 70 | drv_SimpleLCD.c \ |
|---|
| 71 | drv_T6963.c \ |
|---|
| 72 | drv_Trefon.c \ |
|---|
| 73 | drv_USBLCD.c \ |
|---|
| 74 | drv_X11.c \ |
|---|
| 75 | \ |
|---|
| 76 | font_6x8.h \ |
|---|
| 77 | \ |
|---|
| 78 | lcd4linux_i2c.h \ |
|---|
| 79 | \ |
|---|
| 80 | plugin_apm.c \ |
|---|
| 81 | plugin_cpuinfo.c \ |
|---|
| 82 | plugin_diskstats.c \ |
|---|
| 83 | plugin_dvb.c \ |
|---|
| 84 | plugin_exec.c \ |
|---|
| 85 | plugin_i2c_sensors.c \ |
|---|
| 86 | plugin_imon.c \ |
|---|
| 87 | plugin_isdn.c \ |
|---|
| 88 | plugin_loadavg.c \ |
|---|
| 89 | plugin_meminfo.c \ |
|---|
| 90 | plugin_mysql.c \ |
|---|
| 91 | plugin_netdev.c \ |
|---|
| 92 | plugin_pop3.c \ |
|---|
| 93 | plugin_ppp.c \ |
|---|
| 94 | plugin_proc_stat.c \ |
|---|
| 95 | plugin_python.c \ |
|---|
| 96 | plugin_seti.c \ |
|---|
| 97 | plugin_statfs.c \ |
|---|
| 98 | plugin_uname.c \ |
|---|
| 99 | plugin_uptime.c \ |
|---|
| 100 | plugin_wireless.c \ |
|---|
| 101 | plugin_xmms.c |
|---|
| 102 | |
|---|
| 103 | |
|---|
| 104 | EXTRA_DIST = \ |
|---|
| 105 | lcd4linux.conf.sample \ |
|---|
| 106 | lcd4kde.conf \ |
|---|
| 107 | lcd4linux.kdelnk \ |
|---|
| 108 | lcd4linux.xpm \ |
|---|
| 109 | lcd4linux.lsm \ |
|---|
| 110 | curses.m4 \ |
|---|
| 111 | AUTHORS \ |
|---|
| 112 | CREDITS \ |
|---|
| 113 | FAQ \ |
|---|
| 114 | NEWS \ |
|---|
| 115 | TODO \ |
|---|
| 116 | README \ |
|---|
| 117 | README.Drivers \ |
|---|
| 118 | README.Plugins \ |
|---|
| 119 | README.KDE \ |
|---|
| 120 | plugin_sample.c |
|---|