ff8ba97d2a
Further researches are being done
12 lines
264 B
Makefile
12 lines
264 B
Makefile
SRCS = $(shell find -name '*.cpp' -o -name '*.[cS]')
|
|
OBJS = $(addsuffix .o,$(basename $(SRCS)))
|
|
LD = g++
|
|
LDFLAGS = -T kernel.ld -nostdlib -nodefaultlibs
|
|
all: hal
|
|
$(LD) $(LDFLAGS) -o mtgos $(OBJS)
|
|
hal:
|
|
make -C hal
|
|
clean:
|
|
make -C hal clean
|
|
|
|
.PHONY: all hal clean
|