8 lines
164 B
Makefile
8 lines
164 B
Makefile
|
steam = /var/mnt/storage/hot/media/steam
|
||
|
game = $(steam)/steamapps/common/Team\ Fortress\ 2
|
||
|
cfg = $(game)/tf/cfg
|
||
|
|
||
|
.PHONY: install
|
||
|
install:
|
||
|
cp -r ./cfg/* $(cfg)
|