mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 09:52:24 +00:00
with new Unix.Mod, which was previously fixed to comply with x86_64
libc types.
Former-commit-id: 8b66c787da
22 lines
326 B
Makefile
22 lines
326 B
Makefile
|
|
SETPATH = MODULES=".:x86_64"
|
|
|
|
VOC0 = $(SETPATH) /opt/voc/bin/voc
|
|
|
|
all:
|
|
#$(VOC0) -s ORS.Mod
|
|
#$(VOC0) -s ORB.Mod
|
|
#$(VOC0) -s ORG.Mod
|
|
$(VOC0) -s CompatFiles.Mod \
|
|
Fonts.Mod CompatTexts.Mod Oberon.Mod \
|
|
ORS.Mod ORB.Mod ORG.Mod ORP.Mod -M
|
|
|
|
test:
|
|
./ORP -s test.Mod
|
|
|
|
clean:
|
|
rm *.sym
|
|
rm *.o
|
|
rm *.h
|
|
rm *.c
|
|
|