diff options
author | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-24 17:15:39 +0100 |
---|---|---|
committer | Rudy Bousset <rbousset@z2r4p3.le-101.fr> | 2020-02-24 17:15:39 +0100 |
commit | 17a9d765f17ad62d326fd6d9a60bf0c467e0c068 (patch) | |
tree | df357d9017b1504b86c627879088a454928a58f5 /Makefile | |
parent | Map update (diff) | |
download | 42-cub3d-17a9d765f17ad62d326fd6d9a60bf0c467e0c068.tar.gz 42-cub3d-17a9d765f17ad62d326fd6d9a60bf0c467e0c068.tar.bz2 42-cub3d-17a9d765f17ad62d326fd6d9a60bf0c467e0c068.tar.xz 42-cub3d-17a9d765f17ad62d326fd6d9a60bf0c467e0c068.tar.zst 42-cub3d-17a9d765f17ad62d326fd6d9a60bf0c467e0c068.zip |
Removed lifebars
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -60,7 +60,6 @@ SRCS_NAME += ft_key_release.c SRCS_NAME += ft_convert_keycode.c SRCS_NAME += ft_key_loop.c SRCS_NAME += ft_draw_hud.c -SRCS_NAME += ft_draw_life_bar.c SRCS_NAME += ft_music.c #--------------------------------------------------------------------------------------------------# SRCS = $(addprefix ${SRCS_DIR},${SRCS_NAME}) @@ -74,11 +73,11 @@ LFT_SRCS = $(shell find libft/src -name "*.c") MKDIR = mkdir -p RM = rm -rf OS = $(shell uname) -USER = $(shell w | grep tty7 | awk '{print $$1}') ifeq (${OS}, Darwin) SCR_SZE = $(shell osascript -e 'tell application "Finder" to get bounds of window of desktop' \ | tr ',' 'x' | tr -d '\n' | tr -d ' ' | cut -c 5-) else + USER = $(shell w | grep tty7 | awk '{print $$1}') SCR_SZE = $(shell xdpyinfo | grep dimensions | awk '{print $$2}') endif #==================================================================================================# |