Akhy laisse le git
This commit is contained in:
parent
0537cce4d6
commit
7a9c24b042
6
utilitaire/.h test
Normal file
6
utilitaire/.h test
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#ifndef CONVERSION_H
|
||||||
|
#define CONVERSION_H
|
||||||
|
void argument(char *arg, long long *mem, long long *val);
|
||||||
|
long long int conversion(char *inst);
|
||||||
|
|
||||||
|
#endif /*CONVERSION_H*/
|
31
utilitaire/makefile
Normal file
31
utilitaire/makefile
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
but : taquin
|
||||||
|
|
||||||
|
OFILES = menu.o \
|
||||||
|
partie.o\
|
||||||
|
main_taquin.o
|
||||||
|
|
||||||
|
CC = gcc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
CFLAGS = -pedantic -g -lgraph
|
||||||
|
|
||||||
|
menu.o : menu.h
|
||||||
|
|
||||||
|
|
||||||
|
main_taquin.o : menu.h partie.h
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
taquin : $(OFILES)
|
||||||
|
$(CC) $(CFLAGS) -o taquin $(OFILES)
|
||||||
|
|
||||||
|
|
||||||
|
clean :
|
||||||
|
-rm -f $(OFILES) taquin
|
||||||
|
|
||||||
|
run:
|
||||||
|
./taquin
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY : but clean
|
25
utilitaire/makefile2
Normal file
25
utilitaire/makefile2
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
but :core_wars
|
||||||
|
|
||||||
|
OFILES = conversion.o\
|
||||||
|
main_core_wars.o
|
||||||
|
CC=gcc
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
CFLAGS= -pedantic -g
|
||||||
|
|
||||||
|
main_core_wars : conversion.o
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
core_wars : $(OFILES)
|
||||||
|
$(CC) $(CFLAGS) -o core_wars $(OFILES)
|
||||||
|
|
||||||
|
clean :
|
||||||
|
-rm -f $(OFILES) core_wars redcode.mars
|
||||||
|
|
||||||
|
run:
|
||||||
|
./core_wars
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY : but clean
|
Loading…
Reference in New Issue
Block a user