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.
 
 
 
 
 

18 lines
447 B

  1. ###############################################################################
  2. # Automake targets and declarations for libee tests
  3. ###############################################################################
  4. if USE_SLANG
  5. LDFLAGS_slang = -lslang
  6. endif
  7. if USE_NCURSES
  8. LDFLAGS_ncurses = -lncurses
  9. endif
  10. bin_PROGRAMS = demo
  11. demo_SOURCES = demo.c
  12. demo_CPPFLAGS = -I../libee
  13. demo_LDADD = ../libee/libee.a $(LDFLAGS_slang) $(LDFLAGS_ncurses) -lm