35 lines
501 B
Makefile
35 lines
501 B
Makefile
DEFS = -DWINELIB
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
PROGRAMS = winemine
|
|
WRCEXTRA = -s -p winemine
|
|
|
|
LICENSELANG = En
|
|
|
|
C_SRCS = \
|
|
main.c \
|
|
dialog.c
|
|
|
|
|
|
SPEC_SRCS = winemine.spec
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
all: check_wrc $(PROGRAMS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
winemine: $(OBJS)
|
|
$(CC) -o winemine $(OBJS) $(DLL_LINK) $(LIBS)
|
|
|
|
install::
|
|
$(INSTALL_PROGRAM) winemine $(bindir)/winemine
|
|
|
|
uninstall::
|
|
$(RM) $(bindir)/winemine
|
|
|
|
### Dependencies:
|