mirror of
https://github.com/debauchee/barrier.git
synced 2026-07-16 11:01:53 +08:00
Started over.
This commit is contained in:
29
io/Makefile
Normal file
29
io/Makefile
Normal file
@@ -0,0 +1,29 @@
|
||||
DEPTH=..
|
||||
include $(DEPTH)/Makecommon
|
||||
|
||||
#
|
||||
# target file
|
||||
#
|
||||
TARGET = io
|
||||
|
||||
#
|
||||
# source files
|
||||
#
|
||||
LCXXINCS = \
|
||||
-I$(DEPTH)/base \
|
||||
-I$(DEPTH)/mt \
|
||||
$(NULL)
|
||||
CXXFILES = \
|
||||
XIO.cpp \
|
||||
CInputStreamFilter.cpp \
|
||||
COutputStreamFilter.cpp \
|
||||
CStreamBuffer.cpp \
|
||||
CBufferedInputStream.cpp \
|
||||
CBufferedOutputStream.cpp \
|
||||
$(NULL)
|
||||
|
||||
targets: $(LIBTARGET)
|
||||
|
||||
$(LIBTARGET): $(OBJECTS) $(DEPLIBS)
|
||||
if test ! -d $(LIBDIR); then $(MKDIR) $(LIBDIR); fi
|
||||
$(ARF) $(LIBTARGET) $(OBJECTS)
|
||||
Reference in New Issue
Block a user