25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

22 satır
627 B

  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. lib_LIBRARIES = libee.a
  8. libee_a_SOURCES = \
  9. ee.c \
  10. ee.h \
  11. io.c \
  12. math.c \
  13. line.c \
  14. circle.c \
  15. triangle.c \
  16. sprite.c \
  17. $(NULL)