blob: d96c88f6e4008d2ff2c230c9a681e7bf130921f4 [file] [log] [blame] [raw]
# 工具箱在 Windows 上的重要辅助库的 Makefile
ifeq ($(AR),ar)
AR = i586-mingw32msvc-ar
endif
ifeq ($(CC),cc)
CC = i586-mingw32msvc-gcc
endif
CFLAGS = -O1 -Wall
#OBJS = open.o read.o write.o close.o
OBJS = \
close.o \
dup.o \
fileno.o \
fsync.o \
isatty.o \
lseek.o \
open.o \
read.o \
write.o
libposixio.a: $(OBJS)
$(AR) -r $@ $^
clean:
rm -f *.o
distclean: clean
rm -f *.a