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

all:
	cc *.c -o stem -lm

clean:
	rm stem

install:
	cp stem /usr/local/bin/
# end