1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00
sortix--sortix/mkinitrd/Makefile

19 lines
292 B
Makefile
Raw Normal View History

SORTIXKERNEL=../sortix
LIBMAXSI=../libmaxsi
CPPFLAGS=-I../sortix/include
CXXFLAGS=-Wall
BINARIES=mkinitrd initrdfs
all: $(BINARIES)
%: %.cpp crc32.cpp $(LIBMAXSI)/ioleast.cpp
$(CXX) $(CPPFLAGS) $(CXXFLAGS) $< crc32.cpp $(LIBMAXSI)/ioleast.cpp -o $@
clean:
rm -f $(BINARIES)
install: