Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

Makefile.am 749 B

1234567891011121314151617181920212223242526
  1. ###############################################################################
  2. # Automake targets and declarations for libee
  3. ###############################################################################
  4. AM_CFLAGS = -g -O2 -fno-strength-reduce -fomit-frame-pointer
  5. # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
  6. AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
  7. if USE_SLANG
  8. CPPFLAGS_slang = -DUSE_SLANG
  9. endif
  10. if USE_NCURSES
  11. CPPFLAGS_ncurses = -DUSE_NCURSES
  12. endif
  13. lib_LIBRARIES = libee.a
  14. libee_a_SOURCES = \
  15. ee.c \
  16. ee.h \
  17. io.c \
  18. line.c \
  19. math.c \
  20. $(NULL)
  21. libee_a_CPPFLAGS = $(CPPFLAGS_slang) $(CPPFLAGS_ncurses)