6 lines
103 B
Makefile
6 lines
103 B
Makefile
SHELL=/usr/bin/env bash
|
|
date_dir_name = $(shell date +"%Y%m%d-%H%M%S")
|
|
test:
|
|
@echo $(date_dir_name)
|
|
|
|
|