-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
executable file
·48 lines (40 loc) · 941 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
SUBDIRS = sthread_lib snfs_server snfs_lib
#
# Dados sobre o grupo e turno frequentado
# CAMPUS = preencher com A ou T consoante Alameda ou Tagus
# CURSO = indicar o curso do turno frequentado: LEIC ou LERC
# GRUPO = indicar o numero do grupo
# ALUNO1/ALUNO2/ALUNO3 = indicar os numeros dos alunos
#
CAMPUS= T
CURSO= LERC
GRUPO= 26
ALUNO1= 68206
ALUNO2= 68210
ALUNO3= 68229
all: build
build:
@list='$(SUBDIRS)'; for p in $$list; do \
echo "Building $$p"; \
$(MAKE) -C $$p; \
done
clean:
@list='$(SUBDIRS)'; for p in $$list; do \
echo "Cleaning $$p"; \
$(MAKE) clean -C $$p; \
done
package: clean zip
zip:
ifndef CAMPUS
@echo "ERROR: Must setup macro 'CAMPUS' correcly."
else
ifndef CURSO
@echo "ERROR: Must setup macro 'CURSO' correcly."
else
ifndef GRUPO
@echo "ERROR: Must setup macro 'GRUPO' correcly."
else
tar -czf project-$(CAMPUS)-$(CURSO)-$(GRUPO)-$(ALUNO1)-$(ALUNO2)-$(ALUNO3).tgz *
endif
endif
endif