Makefile 226 B

123456789
  1. SOURCES = attribute.c char_ref.c error.c parser.c string_buffer.c \
  2. string_piece.c tag.c tokenizer.c utf8.c util.c vector.c
  3. libgumbo.a : $(SOURCES)
  4. gcc -O2 -std=c99 -c $(SOURCES)
  5. ar -cvq libgumbo.a *.o
  6. clean:
  7. rm *.o *.a