1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
# these are the headers for your project
noinst_HEADERS = %{APPNAMELC}.h
#########################################################################
# APPLICATION SECTION
#########################################################################
# this is the program that gets installed. it's name is used for all
# of the other Makefile.am variables
bin_PROGRAMS = %{APPNAMELC}
# the application source, library search path, and link libraries
%{APPNAMELC}_SOURCES = %{APPNAMELC}.cpp
%{APPNAMELC}_LDFLAGS = $(WX_LIBS)
|