diff options
author | Quentin Rameau <quinq@fifth.space> | 2020-11-07 18:43:11 +0100 |
---|---|---|
committer | Quentin Rameau <quinq@fifth.space> | 2020-11-07 18:43:11 +0100 |
commit | 7dcce9e1b9dbd2be198c19abd36e71eba7d09063 (patch) | |
tree | de3031649c8bf627740557fadb58bb9baf59cb64 /Makefile | |
parent | 262c3ee24ac6b51a6100fafbd554d228e03eca81 (diff) |
Makefile: use explicit targets
Some make implementation have trouble with following inference rules
indirection
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 19 |
1 files changed, 9 insertions, 10 deletions
@@ -19,22 +19,22 @@ options: @echo "WEBEXTCFLAGS = $(WEBEXTCFLAGS) $(CFLAGS)" @echo "LDFLAGS = $(LDFLAGS)" -.c.o: - $(CC) $(SURFCFLAGS) $(CFLAGS) -c $< +surf: $(OBJ) + $(CC) $(SURFLDFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) -.o.so: - $(CC) -shared -Wl,-soname,$@ $(LDFLAGS) -o $@ $< $(WEBEXTLIBS) +$(OBJ) $(WOBJ): config.h common.h config.mk config.h: cp config.def.h $@ -$(OBJ) $(WOBJ): config.h common.h config.mk +$(OBJ): $(SRC) + $(CC) $(SURFCFLAGS) $(CFLAGS) -c $(SRC) -surf: $(OBJ) - $(CC) $(SURFLDFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) +$(WLIB): $(WOBJ) + $(CC) -shared -Wl,-soname,$@ $(LDFLAGS) -o $@ $? $(WEBEXTLIBS) -$(WOBJ): - $(CC) $(WEBEXTCFLAGS) $(CFLAGS) -c $(@:.o=.c) +$(WOBJ): $(WSRC) + $(CC) $(WEBEXTCFLAGS) $(CFLAGS) -c $(WSRC) clean: rm -f surf $(OBJ) @@ -73,5 +73,4 @@ uninstall: done - rmdir $(DESTDIR)$(LIBDIR) -.SUFFIXES: .so .o .c .PHONY: all options distclean clean dist install uninstall |