mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 01:16:17 +01:00
17 lines
275 B
Plaintext
17 lines
275 B
Plaintext
|
TOP = ..\..\..\..
|
||
|
|
||
|
!INCLUDE $(TOP)\glib\build\win32\make.msc
|
||
|
|
||
|
dirent_OBJECTS = dirent.obj wdirent.obj
|
||
|
|
||
|
INCLUDES = -I.
|
||
|
|
||
|
all : dirent.lib
|
||
|
|
||
|
dirent.lib : $(dirent_OBJECTS)
|
||
|
lib /out:dirent.lib /nodefaultlib $(dirent_OBJECTS)
|
||
|
|
||
|
clean::
|
||
|
del /f $(dirent_OBJECTS)
|
||
|
del /f dirent.lib
|