diff options
| author | stkhan <personal@slickd.xyz> | 2022-04-29 16:10:23 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2022-04-29 16:10:23 -0500 |
| commit | d4b3ef6f2d1aa93f2e73f371f49efc78d712db45 (patch) | |
| tree | 22f7ce4972e3838f90783c588217a09d3a502400 /surf/Makefile | |
| parent | ed7f420ff0f7fd71b0ed36ace22deb7f7c41e0e0 (diff) | |
Updated surf, new theme
Diffstat (limited to 'surf/Makefile')
| -rw-r--r-- | surf/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/surf/Makefile b/surf/Makefile index 69695dc..b428848 100644 --- a/surf/Makefile +++ b/surf/Makefile @@ -20,9 +20,10 @@ options: @echo "LDFLAGS = $(LDFLAGS)" surf: $(OBJ) + mkdir -p ~/.config/surf/ $(CC) $(SURFLDFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(LIBS) - cp ads.txt ~/.config/surf/ - + cp ads.txt script.js ~/.config/surf/ + cp style/* ~/.config/surf/styles/ $(OBJ) $(WOBJ): config.h common.h config.mk config.h: @@ -40,7 +41,7 @@ $(WOBJ): $(WSRC) clean: rm -f surf $(OBJ) rm -f $(WLIB) $(WOBJ) - + rm -f ~/.config/surf/script.js distclean: clean rm -f config.h surf-$(VERSION).tar.gz |