Opengist

Explore

  • All gists
  • Topics
  • Users
Give feedback on the new UI Powered by Opengist ⋅ 10ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login Register
m

makefile

Recently created Least recently created Recently updated Least recently updated
anthony

anthony / Шаблон Makefile

Last active 1 month ago linux make makefile shell

Пример для использования в проектах

0 0 1
1 .DEFAULT_GOAL := help
2 .PHONY: goal1 goal2 help
3
4 ######################
5
6 ## goal1: Some goal 1
7 goal1:
8 @echo "This is goal 1"
9
10 ## goal1: Some goal 2