28 lines
418 B
Makefile
28 lines
418 B
Makefile
DEFS = -DWINELIB
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
PROGRAMS = winver
|
|
IMPORTS = shell32 ole32
|
|
|
|
C_SRCS = winver.c
|
|
|
|
SPEC_SRCS = winver.spec
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
winver: $(OBJS)
|
|
$(CC) -o winver $(OBJS) $(DLL_LINK) $(LIBS)
|
|
|
|
install::
|
|
$(INSTALL_PROGRAM) winver $(bindir)/winver
|
|
|
|
uninstall::
|
|
$(RM) $(bindir)/winver
|
|
|
|
### Dependencies:
|