diff options
| author | Quentin Rameau <[email protected]> | 2018-10-09 12:26:32 +0200 |
|---|---|---|
| committer | Quentin Rameau <[email protected]> | 2018-10-09 12:41:00 +0200 |
| commit | 16beb6f8acd5e589be11168ab6c1944c4411052e (patch) | |
| tree | 027d978783d97e09f5aeed0948a8f2ab10bbea9e | |
| parent | Fix, again, webext directory in Makefile (diff) | |
| download | surf-16beb6f8acd5e589be11168ab6c1944c4411052e.tar.gz surf-16beb6f8acd5e589be11168ab6c1944c4411052e.tar.bz2 surf-16beb6f8acd5e589be11168ab6c1944c4411052e.zip | |
Makefile: fix dependencies
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index 10505f3..cdbd8ad 100644 --- a/Makefile +++ b/Makefile @@ -24,9 +24,9 @@ options: config.h: cp config.def.h $@ -$(OBJ): config.h config.mk +$(OBJ): config.h common.h config.mk -$(WEBEXTOBJ): config.h config.mk +$(WEBEXTOBJ): $(WEBEXTSRC) config.h common.h config.mk $(CC) $(WEBEXTCFLAGS) $(CFLAGS) -c $(WEBEXTSRC) libsurf-webext.so: $(WEBEXTOBJ) |