Skip to content

Commit 20bb7f5

Browse files
authored
Merge pull request #1249 from LourensVeen/amuse_lib_libs_envvar
Fix clash with LIBS in environment
2 parents 7e731cb + 7fcc898 commit 20bb7f5

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lib/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.PHONY: Makefile
2-
LIBS = $(filter-out Makefile sapporo_light, $(wildcard *))
2+
AMUSE_LIBS = $(filter-out Makefile sapporo_light, $(wildcard *))
33

44

55
# We build sapporo_light separately and only on demand, because it needs CUDA and we
@@ -10,9 +10,9 @@ LIBS = $(filter-out Makefile sapporo_light, $(wildcard *))
1010

1111

1212
.PHONY: install uninstall clean distclean
13-
install uninstall clean distclean: $(LIBS)
13+
install uninstall clean distclean: $(AMUSE_LIBS)
1414

15-
.PHONY: $(LIBS)
16-
$(LIBS):
15+
.PHONY: $(AMUSE_LIBS)
16+
$(AMUSE_LIBS):
1717
$(MAKE) -C $@ $(MAKECMDGOALS)
1818

0 commit comments

Comments
 (0)