mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 04:48:06 +01:00
- nobody used it Amend network stuff removal still more wings network removals [crmafra: squashed together three patches]
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
## automake input file for WINGs - Examples
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
|
|
noinst_PROGRAMS = connect server fontl puzzle colorpick
|
|
|
|
|
|
LDADD= $(top_builddir)/WINGs/libWINGs.la $(top_builddir)/wrlib/libwraster.la \
|
|
$(top_builddir)/WINGs/libWUtil.la \
|
|
@XFTLIBS@ @INTLIBS@
|
|
|
|
colorpick_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
fontl_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
puzzle_DEPENDENCIES = $(top_builddir)/WINGs/libWINGs.la
|
|
|
|
connect_DEPENDENCIES = $(top_builddir)/WINGs/libWUtil.la
|
|
|
|
connect_LDADD = $(top_builddir)/WINGs/libWUtil.la @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
server_DEPENDENCIES = $(top_builddir)/WINGs/libWUtil.la
|
|
|
|
server_LDADD = $(top_builddir)/WINGs/libWUtil.la @LIBRARY_SEARCH_PATH@ @INTLIBS@
|
|
|
|
|
|
INCLUDES = -I$(top_srcdir)/WINGs -I$(top_srcdir)/wrlib -I$(top_srcdir)/src \
|
|
-DRESOURCE_PATH=\"$(datadir)/WINGs\" @HEADER_SEARCH_PATH@ -DDEBUG
|
|
|
|
LIBTOOL = $(QUIET) $(SHELL) $(top_srcdir)/libtool $(LIBTOOL_ARG)
|
|
|
|
.c.o:
|
|
$(QUIET)$(COMPILE) -c $<
|
|
|
|
.c.obj:
|
|
$(QUIET)$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
|
|
|
.c.lo:
|
|
$(QUIET)$(LTCOMPILE) -c -o $@ $<
|