Skip to content

Commit 7fcc898

Browse files
committed
Fix clash with LIBS in environment
1 parent 0fbf110 commit 7fcc898

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)