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.

22 lines
252 B

CC=gcc
CFLAGS=-Wall
LIBS=-pthread -lm
OBJS = assemblage_includes.o io.o threads.o
TARGET=rosace
all: $(TARGET)
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) $(OBJS) -o $@ $(LIBS)
clean:
rm -f $(OBJS) $(TARGET)