makefiles: Add a standard header for all makefiles to replace the common variable...
[wine] / libs / port / Makefile.in
1 DEFS      = -D__WINESRC__
2 DLLFLAGS  = @DLLFLAGS@
3 MODULE    = libwine_port.a
4
5 C_SRCS = \
6         ffs.c \
7         fstatvfs.c \
8         futimes.c \
9         getopt.c \
10         getopt1.c \
11         getpagesize.c \
12         gettid.c \
13         interlocked.c \
14         isinf.c \
15         isnan.c \
16         lstat.c \
17         memcpy_unaligned.c \
18         memmove.c \
19         mkstemps.c \
20         poll.c \
21         pread.c \
22         pwrite.c \
23         readlink.c \
24         spawn.c \
25         statvfs.c \
26         strcasecmp.c \
27         strerror.c \
28         strncasecmp.c \
29         symlink.c \
30         usleep.c
31
32 all: $(MODULE)
33
34 @MAKE_RULES@
35
36 $(MODULE): $(OBJS) Makefile.in
37         $(RM) $@
38         $(AR) $(ARFLAGS) $@ $(OBJS)
39         $(RANLIB) $@