summaryrefslogtreecommitdiff
path: root/lab05/Makefile
blob: 67298b5d326ce3a1d35894535868c9f94bbe43ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#############################################################################

include ../make/defaults.mk

clean:
	rm -f procs threads $(DESTDIR)/procs $(DESTDIR)/threads

procs: procs.c Makefile
	$(CC) -o $@ $<
	cp procs $(DESTDIR)

threads: threads.c Makefile
	$(CC) -o $@ $< -lpthread
	cp threads $(DESTDIR)

sched: sched.c Makefile
	$(CC) -o $@ $< -lpthread
	cp sched $(DESTDIR)