add emojis

This commit is contained in:
Mylloon 2023-11-05 15:19:28 +01:00
parent 67c42c895f
commit 10825de7ea
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -193,20 +193,20 @@ sync-windows:
sync: sync:
# Check if at least the platform is supported # Check if at least the platform is supported
ifneq (1, $(filter 1, $(ARCH) $(WSL))) ifneq (1, $(filter 1, $(ARCH) $(WSL)))
@echo "Unsupported platform" @echo "Unsupported platform"
else else
# Call target of compatible with all supported platforms # Call target of compatible with all supported platforms
@$(MAKE) sync-dotconfig @$(MAKE) sync-dotconfig
@echo ".config directory synced!" @echo ".config directory synced!"
@echo @echo
@$(MAKE) sync-dotfiles @$(MAKE) sync-dotfiles
@echo "Dotfiles synced!" @echo "Dotfiles synced!"
@echo @echo
@$(MAKE) sync-emacs @$(MAKE) sync-emacs
@echo "Emacs settings synced!" @echo "Emacs settings synced!"
@echo @echo
@ -214,20 +214,20 @@ else
ifeq ($(ARCH), 1) ifeq ($(ARCH), 1)
@$(MAKE) sync-arch @$(MAKE) sync-arch
@echo "Arch synced!" @echo "Arch synced!"
@echo @echo
# Specific to WSL # Specific to WSL
else ifeq ($(WSL), 1) else ifeq ($(WSL), 1)
@$(MAKE) sync-wsl @$(MAKE) sync-wsl
@echo "WSL synced!" @echo "WSL synced!"
@echo @echo
# Windows # Windows
@$(MAKE) sync-windows @$(MAKE) sync-windows
@echo "Windows synced!" @echo "Windows synced!"
@echo @echo
endif endif