blob: 433ea66e6c1a53647482372e3cb2150b0bc0980e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
include $(top_srcdir)/misc/Makefile.common
SUBDIRS = zlib pthreads
noinst_HEADERS = dirent/dirent.h timer/timer.h
if !HAVE_SETENV
libsetenv = libsetenv.la
endif
if WIN32
win32libs = libtimer.la libdirent.la
endif
noinst_LTLIBRARIES = $(libsetenv) $(win32libs)
libsetenv_la_SOURCES = setenv.c
libtimer_la_SOURCES = timer/timer.c
libdirent_la_SOURCES = dirent/dirent.c
|