1
0
Mirror von https://github.com/tkuschel/bees.git synchronisiert 2026-05-08 04:59:37 +02:00

Makefile: .o already depends on its .h file

We can remove the explicit depend on the .h file because that is covered
by depends.mk. Let's instead depend on makeflags which makes more sense.

Signed-off-by: Kai Krakow <kai@kaishome.de>
Dieser Commit ist enthalten in:
Kai Krakow
2018-01-16 00:03:05 +01:00
Ursprung c8787fecd2
Commit 4789445d7b
+1 -1
Datei anzeigen
@@ -31,7 +31,7 @@ depends.mk: *.cc
include depends.mk
%.o: %.cc ../include/crucible/%.h
%.o: %.cc ../makeflags
$(CXX) $(CXXFLAGS) -fPIC -o $@ -c $<
libcrucible.so: $(OBJS) Makefile