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