mlc/Makefile

13 lines
161 B
Makefile

CFLAGS=-std=c89 -g -lm -Wall -Wextra -I.
CC=gcc
OBJ=example.o mlc.o
all: $(OBJ)
$(CC) $(OBJ) -o example $(CFLAGS)
.PHONY: clean
clean:
rm -f example *.o