sortix--sortix/utils/Makefile

24 lines
319 B
Makefile
Raw Normal View History

# Set up variables such that we can easily cross-compile.
OSROOT=..
include ../crosscompilemakefile.mak
BINARIES:=\
init \
cat \
sh \
mxsh \
clear \
all: $(BINARIES)
%: %.cpp
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -O2 -c $< -o $@.o
$(LD) $(LDFLAGS) $@.o -o $@ $(LIBS)
sh: mxsh
cp mxsh sh
clean:
rm -f $(BINARIES) *.o