diff options
author | Suleyman Farajli <suleyman@farajli.net> | 2025-06-28 00:31:01 +0400 |
---|---|---|
committer | Suleyman Farajli <suleyman@farajli.net> | 2025-06-28 00:31:01 +0400 |
commit | 4a69fcde900f9a227906f255c728071303bf5b46 (patch) | |
tree | effa016e4c46b02766b106c0980282298b8505d6 | |
parent | 45d0a219b778a0effc79c64f006a7cd7372446d8 (diff) |
refactor(makefile): full, check and fullcheck targets removed
-rw-r--r-- | Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
@@ -28,9 +28,7 @@ DIRECTORIES = $(BINDIR) $(CONFDIR) $(FONTDIR) COPY = cp -r LINK = ln -sf -all: config $(DIRECTORIES) scripts - -full: all desktop +all: config $(DIRECTORIES) scripts desktop desktop: $(INSTALL_TARGETS) @@ -106,12 +104,6 @@ font1-install font2-install: $(COPY) $$(basename $< .tar.gz) $(FONTDIR) fc-cache -check: - @./dep.sh - -fullcheck: - @./dep.sh --optional - dist: clean mkdir -p slcf/ cp -R config distros scripts dep.sh Makefile README slcf/ @@ -121,6 +113,6 @@ dist: clean clean: rm -rf slcf/ slcf.tar.gz $(ARCHIVE) $(FONTS) $(SOFTWARE) -.PHONY: all arch-linux check clean config desktop directory dist \ - fonts full fullcheck git scripts server sync \ +.PHONY: all arch-linux clean config desktop directory dist \ + fonts git scripts server sync \ $(INSTALL_TARGETS) |