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:
@@ -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
|
||||
|
||||
@@ -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
4
wrlib/tests/.cvsignore
Normal 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
25
wrlib/tests/Makefile.am
Normal 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)
|
||||
|
||||
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Reference in New Issue
Block a user