Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 204B

1234567891011
  1. CC=gcc
  2. CFLAGS=-g
  3. RM=rm -f
  4. TARGET=null malloc intArray1 intArray2 free
  5. .PHONY: all clean
  6. all: $(TARGET)
  7. clean:
  8. $(RM) null malloc intArray1 intArray2 free
  9. $(TARGET): $(TARGET).c
  10. $(CC) $< $(CFLAGS) -o $@