aboutsummaryrefslogtreecommitdiff
path: root/Practical2/c/Makefile
blob: 270a6933231f4e300d1b1f2758930a63e93c6cbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC=gcc

.PHONY: all run clean

all: checkout

checkout:
	$(CC) -o checkout checkout.c

run:
	./checkout

clean:
	rm checkout