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

  1. CC=gcc
  2. CFLAGS=-Wall
  3. LIBS=-pthread -lm
  4. OBJS = assemblage_includes.o io.o threads.o
  5. TARGET=rosace
  6. all: $(TARGET)
  7. %.o: %.c
  8. $(CC) $(CFLAGS) -c $< -o $@
  9. $(TARGET): $(OBJS)
  10. $(CC) $(CFLAGS) $(OBJS) -o $@ $(LIBS)
  11. clean:
  12. rm -f $(OBJS) $(TARGET)