aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5cc89828526eecce44de6dadee92f70b81d3b980 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
##
# Project Title
#
# @file
# @version 0.1

all:
	cc *.c -o stem

clean:
	rm stem
# end