-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (43 loc) · 966 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
49
50
51
52
SUBDIRS = kos
#
# 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=MISTO
GRUPO=32
ALUNO1=76531
ALUNO2=76379
ALUNO3=76390
CFLAGS = -g -O0 -Wall -pthread
export DEFS
export CFLAGS
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