1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-03 06:45:51 +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

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

View File

@@ -1,5 +1,7 @@
## automake input file for wrlib
SUBDIRS = . tests
AUTOMAKE_OPTIONS = no-dependencies
lib_LTLIBRARIES = libwraster.la
@@ -8,9 +10,6 @@ libwraster_la_LDFLAGS = -version-info 4:0:1
bin_SCRIPTS = get-wraster-flags
noinst_PROGRAMS = testgrad testdraw view testrot
EXTRA_DIST = test.png tile.xpm ballot_box.xpm
include_HEADERS = wraster.h
libwraster_la_SOURCES = \
@@ -57,26 +56,6 @@ x86_specific.o: x86_specific.c
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
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