1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-31 19:12:32 +01:00

fix to allow parallel builds on SMP systems using make -j

This commit is contained in:
dan
2005-01-06 15:48:42 +00:00
parent bde572f673
commit 71f1d7f101
14 changed files with 36 additions and 26 deletions

View File

@@ -10,6 +10,7 @@ Changes since version 0.91.0:
- Removed --with-appsdir option and replaced it with --with-gnustepdir. Also, - Removed --with-appsdir option and replaced it with --with-gnustepdir. Also,
default installation path (for non GNUstep users) is now $(prefix)/bin default installation path (for non GNUstep users) is now $(prefix)/bin
- fixed bug with infinite loop in some circumstances in fitText() in WINGs - fixed bug with infinite loop in some circumstances in fitText() in WINGs
- fixed to allow parallel builds on SMP systems using make -j
Changes since version 0.90.0: Changes since version 0.90.0:

2
FAQ
View File

@@ -366,7 +366,7 @@ for your convenience.
2.8 Can I use WindowMaker with KDE or GNOME or CDE? 2.8 Can I use WindowMaker with KDE or GNOME or CDE?
--------------------------------------------------- ---------------------------------------------------
Contrary to a lot of people think, KDE is NOT a window manager. KDE is Contrary to what a lot of people think, KDE is NOT a window manager. KDE is
a suite of various applications that includes a custom window manager (kwm). a suite of various applications that includes a custom window manager (kwm).
The same is true for CDE. The same is true for CDE.

View File

@@ -894,7 +894,8 @@ AC_OUTPUT(Makefile po/Makefile util/Makefile test/Makefile \
WINGs/Makefile WINGs/WINGs/Makefile WINGs/Documentation/Makefile \ WINGs/Makefile WINGs/WINGs/Makefile WINGs/Documentation/Makefile \
WINGs/Examples/Makefile WINGs/Resources/Makefile WINGs/Tests/Makefile \ WINGs/Examples/Makefile WINGs/Resources/Makefile WINGs/Tests/Makefile \
WINGs/Extras/Makefile WINGs/po/Makefile \ WINGs/Extras/Makefile WINGs/po/Makefile \
wmlib/Makefile wrlib/Makefile src/Makefile src/wconfig.h \ wmlib/Makefile wrlib/Makefile wrlib/tests/Makefile \
src/Makefile src/wconfig.h \
doc/Makefile doc/sk/Makefile \ doc/Makefile doc/sk/Makefile \
WindowMaker/Makefile WindowMaker/Backgrounds/Makefile \ WindowMaker/Makefile WindowMaker/Backgrounds/Makefile \
WindowMaker/Defaults/Makefile WindowMaker/IconSets/Makefile \ WindowMaker/Defaults/Makefile WindowMaker/IconSets/Makefile \

View File

@@ -1,5 +1,5 @@
Makefile Makefile.in Makefile Makefile.in
*.lo *.la *.lo *.la
view testgrad testdraw testrot get-wraster-flags get-wraster-flags
.libs *.pc .libs *.pc
.psrc .inslog2 tca.map tca.log pchdir *.rpt .psrc .inslog2 tca.map tca.log pchdir *.rpt

View File

@@ -1,5 +1,7 @@
## automake input file for wrlib ## automake input file for wrlib
SUBDIRS = . tests
AUTOMAKE_OPTIONS = no-dependencies AUTOMAKE_OPTIONS = no-dependencies
lib_LTLIBRARIES = libwraster.la lib_LTLIBRARIES = libwraster.la
@@ -8,9 +10,6 @@ libwraster_la_LDFLAGS = -version-info 4:0:1
bin_SCRIPTS = get-wraster-flags bin_SCRIPTS = get-wraster-flags
noinst_PROGRAMS = testgrad testdraw view testrot
EXTRA_DIST = test.png tile.xpm ballot_box.xpm
include_HEADERS = wraster.h include_HEADERS = wraster.h
libwraster_la_SOURCES = \ libwraster_la_SOURCES = \
@@ -57,26 +56,6 @@ x86_specific.o: x86_specific.c
INCLUDES = $(DFLAGS) @HEADER_SEARCH_PATH@ INCLUDES = $(DFLAGS) @HEADER_SEARCH_PATH@
LIBLIST = $(top_builddir)/wrlib/libwraster.la
view_SOURCES= view.c
view_LDADD = $(LIBLIST)
testgrad_SOURCES = testgrad.c
testgrad_LDADD = $(LIBLIST)
testrot_SOURCES = testrot.c
testrot_LDADD = $(LIBLIST)
testdraw_SOURCES = testdraw.c
testdraw_LDADD = $(LIBLIST)
libwraster_la_LIBADD = @ALLOCA@ @LIBRARY_SEARCH_PATH@ @GFXLIBS@ @XLIBS@ -lm libwraster_la_LIBADD = @ALLOCA@ @LIBRARY_SEARCH_PATH@ @GFXLIBS@ @XLIBS@ -lm
DISTCLEANFILES = wrlib.pc DISTCLEANFILES = wrlib.pc

4
wrlib/tests/.cvsignore Normal file
View File

@@ -0,0 +1,4 @@
Makefile Makefile.in
view testgrad testdraw testrot
.libs *.pc
.psrc .inslog2 tca.map tca.log pchdir *.rpt

25
wrlib/tests/Makefile.am Normal file
View File

@@ -0,0 +1,25 @@
## automake input file for wrlib
AUTOMAKE_OPTIONS = no-dependencies
noinst_PROGRAMS = testdraw testgrad testrot view
EXTRA_DIST = test.png tile.xpm ballot_box.xpm
include_HEADERS = $(top_builddir)/wrlib/wraster.h
INCLUDES = $(DFLAGS) @HEADER_SEARCH_PATH@
LIBLIST = $(top_builddir)/wrlib/libwraster.la
testdraw_SOURCES = testdraw.c
testdraw_LDADD = $(LIBLIST)
testgrad_SOURCES = testgrad.c
testgrad_LDADD = $(LIBLIST)
testrot_SOURCES = testrot.c
testrot_LDADD = $(LIBLIST)
view_SOURCES= view.c
view_LDADD = $(LIBLIST)

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB