Salome HOME
set-up .gitignore file
[tools/hxx2salome.git] / src / Makefile.am
1 bin_PROGRAMS = ghxx2salome
2
3 AM_CPPFLAGS = @QT_MT_INCLUDES@ -DBINDIR="\"${bindir}\""
4 LDADD = ${QT_LIB_DIR} -lQtCore -lQtGui
5
6 EXTRA_DIST = hxx2salome.ui
7
8 UIC_FILES = hxx2salome_ui.h
9
10 MOC_FILES = hxx2salome_moc.cpp
11
12 BUILT_SOURCES = $(UIC_FILES) $(MOC_FILES)
13
14 dist_ghxx2salome_SOURCES = main.cpp hxx2salome.h hxx2salome.cpp
15 nodist_ghxx2salome_SOURCES = $(UIC_FILES) $(MOC_FILES)
16
17 CLEANFILES = $(UIC_FILES) $(MOC_FILES)
18
19 %_ui.h: %.ui
20         $(UIC) -o $@ $<
21
22 %_moc.cpp: %.h
23         ${MOC} $< -o $@