Create Makefile
Cette révision appartient à :
Parent
200c8bef37
révision
d09cbdc7e5
13
Makefile
Fichier normal
13
Makefile
Fichier normal
@ -0,0 +1,13 @@
|
||||
CC=gcc
|
||||
CFLAGS = -I. -Wall -W
|
||||
DEPS = ph7.h
|
||||
OBJ = ph7.o
|
||||
|
||||
%.o: %.c $(DEPS)
|
||||
$(CC) -c -o $@ $< $(CFLAGS)
|
||||
|
||||
ph7-library.out: $(OBJ)
|
||||
gcc -o $@ $^ $(CFLAGS) -Ofast
|
||||
|
||||
clean :
|
||||
rm *.o *.asm *.lst *.sym *.rel *.s *.gc* -f *.info
|
Chargement…
x
Référencer dans un nouveau ticket
Bloquer un utilisateur