2000-07-23 21:30:48 +02:00
|
|
|
DEFS = -DWINELIB -DSTRICT
|
2000-03-15 20:06:39 +01:00
|
|
|
TOPSRCDIR = @top_srcdir@
|
|
|
|
TOPOBJDIR = ../..
|
|
|
|
SRCDIR = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
MODULE = none
|
|
|
|
PROGRAMS = winemine
|
2000-10-31 01:22:41 +01:00
|
|
|
IMPORTS = user32 gdi32 kernel32 ntdll
|
2000-03-15 20:06:39 +01:00
|
|
|
|
|
|
|
LICENSELANG = En
|
|
|
|
|
|
|
|
C_SRCS = \
|
|
|
|
main.c \
|
|
|
|
dialog.c
|
|
|
|
|
|
|
|
SPEC_SRCS = winemine.spec
|
|
|
|
|
|
|
|
RC_SRCS = rsrc.rc
|
|
|
|
|
2000-10-23 23:39:39 +02:00
|
|
|
all: $(PROGRAMS)
|
2000-03-15 20:06:39 +01:00
|
|
|
|
|
|
|
@MAKE_RULES@
|
|
|
|
|
|
|
|
winemine: $(OBJS)
|
2000-04-24 19:17:49 +02:00
|
|
|
$(CC) -o winemine $(OBJS) $(DLL_LINK) $(LIBS)
|
2000-03-15 20:06:39 +01:00
|
|
|
|
2000-10-23 23:39:39 +02:00
|
|
|
$(SPEC_SRCS:.spec=.spec.c): $(RC_SRCS:.rc=.res)
|
|
|
|
|
2000-03-15 20:06:39 +01:00
|
|
|
install::
|
|
|
|
$(INSTALL_PROGRAM) winemine $(bindir)/winemine
|
|
|
|
|
|
|
|
uninstall::
|
|
|
|
$(RM) $(bindir)/winemine
|
|
|
|
|
|
|
|
### Dependencies:
|