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.
| 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 $@
|