-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile-unix.fr
48 lines (33 loc) · 991 Bytes
/
Makefile-unix.fr
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
# Customizable datas (language, plattform related datas...)
CC=gcc
FLAGS= -Wall -ansi -pedantic
TMPFILES = *.o *~
DIR=Hideur2.0
FILES=INSTALLFR ALIRE hideur
ARCHIVE=hideur-linux.fr
LG= -DFRENCH # Français
EXE=hideur # Nom de l'exécutable
CLEANCMD=rm -f # commande d'effacement (Unix, Linux...)
# Variables de compilation - ne pas éditer
#DEBUG=-DDBG
hideur : header.o main.o
$(CC) -o $(EXE) header.o main.o $(FLAGS) $(LG) $(DEBUG)
@echo Ok...
@./hideur
header.o : header.c header.h messages.h debug.h aff.h
$(CC) -c header.c $(LG) $(DEBUG) $(OS)
main.o : main.c header.h header.c messages.h debug.h
$(CC) -c main.c $(LG) $(DEBUG) $(OS)
clean :
@$(CLEANCMD) $(TMPFILES)
@echo Ok...
superclean :
@$(CLEANCMD) $(TMPFILES) $(EXE)
idiot :
@echo Agaaaa...gagaga.
tar :
@echo "Création de l'archive" $(ARCHIVE).tar.gz ...
@mkdir $(DIR)
@cp $(FILES) $(DIR)
@tar cvfz $(ARCHIVE).tar.gz $(DIR) > /dev/null
@rm -fr $(DIR)