-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
svn path=/trunk/core/; revision=2809
- Loading branch information
Arvin Schnell
committed
Jun 21, 2002
1 parent
bec4634
commit 5e270cd
Showing
45 changed files
with
455 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Arvin Schnell <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# | ||
# Makefile.cvs for yast2-core | ||
# | ||
configure: all | ||
./configure | ||
|
||
all: | ||
y2tool y2autoconf | ||
y2tool y2automake | ||
autoreconf --force --install | ||
|
||
install: configure | ||
make | ||
make install | ||
|
||
reconf: all | ||
./config.status --recheck | ||
./config.status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
yast2-core |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
libycp liby2 libyui libscr libpkg agent-any agent-dummy agent-dumpto agent-ini agent-losetup agent-modules agent-probe agent-resolver agent-system agents-non-y2 agents-perl scr wfm base |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# Makefile.am for y2scr/ag_dummy | ||
# | ||
# | ||
|
||
SUBDIRS = src conf doc testsuite | ||
SUBDIRS = conf doc src testsuite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# Makefile.am for y2scr/ag_dumpto | ||
# | ||
# | ||
|
||
SUBDIRS = src doc testsuite conf | ||
SUBDIRS = conf doc src testsuite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
# | ||
# Makefile.am for y2a_ini/testsuite | ||
# Makefile.am for core/agent-ini/testsuite | ||
# | ||
|
||
SUBDIRS = config lib ag_ini.test tests ag_ini.debug debug ag_ini.multi multi | ||
|
||
PACKAGE = ag_ini | ||
AUTOMAKE_OPTIONS = dejagnu | ||
|
||
INCLUDES = -I$(includedir) | ||
INCLUDES = \ | ||
-I$(srcdir)/../../libycp/src/include \ | ||
-I$(srcdir)/../../liby2/src/include \ | ||
-I$(srcdir)/../../libscr/src/include | ||
|
||
noinst_PROGRAMS = runag_ini | ||
runag_ini_SOURCES = runag_ini.cc | ||
|
||
runag_ini_LDADD = -lscr -ly2 -lycp -lcrypt | ||
runag_ini_LDFLAGS = -L$(libdir) \ | ||
runag_ini_LDFLAGS = -L$(libdir) \ | ||
-L$(srcdir)/../../libycp/src \ | ||
-L$(srcdir)/../../liby2/src \ | ||
-L$(srcdir)/../../libscr/src \ | ||
-Xlinker --whole-archive \ | ||
$(plugindir)/libpy2stdio.la \ | ||
$(plugindir)/libpy2script.la \ | ||
../src/libpy2ag_ini.la \ | ||
-Xlinker --no-whole-archive | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# Makefile.am for y2scr/ag_shell | ||
# | ||
# | ||
|
||
SUBDIRS = src doc conf | ||
SUBDIRS = conf src doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,26 @@ | ||
# | ||
# Makefile.am for y2a_hwpb/testsuite | ||
# Makefile.am for core/agent-probe/testsuite | ||
# | ||
|
||
SUBDIRS = config lib ag_hwprobe.test tests | ||
|
||
PACKAGE = ag_hwprobe | ||
AUTOMAKE_OPTIONS = dejagnu | ||
|
||
INCLUDES = -I$(includedir) | ||
INCLUDES = \ | ||
-I$(srcdir)/../../libycp/src/include \ | ||
-I$(srcdir)/../../liby2/src/include \ | ||
-I$(srcdir)/../../libscr/src/include | ||
|
||
noinst_PROGRAMS = runag_hwprobe | ||
|
||
runag_hwprobe_SOURCES = runag_hwprobe.cc | ||
runag_hwprobe_LDADD = -ly2 -lycp -lscr -lcrypt -lutil | ||
runag_hwprobe_LDFLAGS = -L$(libdir) \ | ||
-L$(srcdir)/../../libycp/src \ | ||
-L$(srcdir)/../../liby2/src \ | ||
-L$(srcdir)/../../libscr/src \ | ||
-Xlinker --whole-archive \ | ||
$(plugindir)/libpy2stdio.la \ | ||
../src/libpy2ag_hwprobe.la \ | ||
-Xlinker --no-whole-archive | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# | ||
# Makefile.am for y2scr/ag_resolv | ||
# | ||
# | ||
|
||
SUBDIRS = src doc testsuite conf | ||
SUBDIRS = conf doc src testsuite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.