|
Revision 2, 497 bytes
(checked in by nextime, 2 years ago)
|
Initial import, branching from morphix svn
|
| Line | |
|---|
| 1 |
## Process this file with automake to produce Makefile.in |
|---|
| 2 |
|
|---|
| 3 |
INCLUDES = \ |
|---|
| 4 |
-DPACKAGE_DATA_DIR=\""$(datadir)"\" \ |
|---|
| 5 |
-DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ |
|---|
| 6 |
@PACKAGE_CFLAGS@ |
|---|
| 7 |
|
|---|
| 8 |
bin_PROGRAMS = gpppoe-conf pppoe-conf |
|---|
| 9 |
|
|---|
| 10 |
pppoe_conf_SOURCES = \ |
|---|
| 11 |
pppoe-conf.c \ |
|---|
| 12 |
config-writer.c config-writer.h |
|---|
| 13 |
|
|---|
| 14 |
gpppoe_conf_SOURCES = \ |
|---|
| 15 |
main.c \ |
|---|
| 16 |
support.c support.h \ |
|---|
| 17 |
interface.c interface.h \ |
|---|
| 18 |
callbacks.c callbacks.h \ |
|---|
| 19 |
config-writer.c config-writer.h |
|---|
| 20 |
|
|---|
| 21 |
gpppoe_conf_LDADD = @PACKAGE_LIBS@ $(INTLLIBS) |
|---|
| 22 |
|
|---|