mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
f673b71ece
yet. Added install-lib and install-dev targets to allow partial installations; moved winemaker.man and winelauncher.in to better fit in the new install categories.
27 lines
428 B
Makefile
27 lines
428 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
|
|
C_SRCS = \
|
|
uuid.c
|
|
|
|
all: libwine_uuid.a
|
|
|
|
@MAKE_RULES@
|
|
|
|
libwine_uuid.a: uuid.o
|
|
$(RM) $@
|
|
$(AR) $@ uuid.o
|
|
$(RANLIB) $@
|
|
|
|
install:: libwine_uuid.a
|
|
$(MKINSTALLDIRS) $(libdir)
|
|
$(INSTALL_DATA) libwine_uuid.a $(libdir)/libwine_uuid.a
|
|
|
|
uninstall::
|
|
$(RM) $(libdir)/libwine_uuid.a
|
|
|
|
### Dependencies:
|