36 lines
555 B
Makefile
36 lines
555 B
Makefile
DEFS = -DWINELIB -DSTRICT
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
PROGRAMS = winemine
|
|
IMPORTS = user32 gdi32 kernel32
|
|
|
|
LICENSELANG = En
|
|
|
|
C_SRCS = \
|
|
main.c \
|
|
dialog.c
|
|
|
|
SPEC_SRCS = winemine.spec
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
winemine: $(OBJS)
|
|
$(CC) -o winemine $(OBJS) $(DLL_LINK) $(LIBS)
|
|
|
|
$(SPEC_SRCS:.spec=.spec.c): $(RC_SRCS:.rc=.res)
|
|
|
|
install::
|
|
$(INSTALL_PROGRAM) winemine $(bindir)/winemine
|
|
|
|
uninstall::
|
|
$(RM) $(bindir)/winemine
|
|
|
|
### Dependencies:
|