mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
34 lines
605 B
Makefile
34 lines
605 B
Makefile
DEFS = -DWINELIB -DSTRICT
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
PROGRAMS = cmdlgtst
|
|
IMPORTS = advapi32 comctl32 comdlg32 shell32 shlwapi ole32 rpcrt4 winspool.drv user32 gdi32 kernel32 ntdll
|
|
|
|
C_SRCS = \
|
|
cmdlgtst.c
|
|
|
|
SPEC_SRCS = \
|
|
cmdlgtst.spec
|
|
|
|
RC_SRCS = \
|
|
cmdlgr.rc
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
cmdlgtst: $(OBJS)
|
|
$(CC) -o cmdlgtst $(OBJS) $(DLL_LINK) $(LIBS)
|
|
|
|
$(SPEC_SRCS:.spec=.spec.c): $(RC_SRCS:.rc=.res)
|
|
|
|
install::
|
|
$(INSTALL_PROGRAM) cmdlgtst $(bindir)/cmdlgtst
|
|
|
|
uninstall::
|
|
$(RM) $(bindir)/cmdlgtst
|
|
|
|
### Dependencies:
|