Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 1234567891011 |
- CC=gcc
- CFLAGS=-g
- RM=rm -f
- TARGET=null malloc intArray1 intArray2 free
- .PHONY: all clean
- all: $(TARGET)
- clean:
- $(RM) null malloc intArray1 intArray2 free
-
- $(TARGET): $(TARGET).c
- $(CC) $< $(CFLAGS) -o $@
|