ultradefrag/src/udefrag.l64

111 lines
2.6 KiB
Plaintext

#
# Plain general makefile, for ultradefrag compilations
# Host Linux, target Linux 64-bit
#
HCCL64=hccl64
TOPL64=toplnx
ASM86=asm86
# restrict suffixes list to the ones we define
.SUFFIXES :
# this list controls the ordering of rule evaluation
.SUFFIXES : .c .cpp .java .s .asm .o .l .map
# cancel implicit rule for building .c from .l (lex file) :
%.c : %.l
# cancel implicit rule for building . from .c
% : %.c
# cancel implicit rule for building . from .s
% : %.s
NTFS=/shared/ntfs/ntfslowprof
INCL=-I/usr/include -I/shared/c-src/include/linux -Iinclude
# use a symbolink link to locate the actual library,
# eg /usr/lib/gcc/x86_64-redhat-linux/4.1.2
LIB=/usr/lib/gcclib64
COPT=-DL8SC
GCCOPT=-DL8GC -O2
A=console.a udefrag.a zenwinx.a wincalls.a
.c.s :
$(HCCL64) -RS $(COPT) $(INCL) $*.c > $*.s
.cpp.o :
gcc $(GCCOPT) -c -o$*.o $*.cpp
touch -c $*.o
.c.o :
$(HCCL64) -RS $(COPT) $(INCL) $*.c | $(TOPL64) -k8 - $*.o
touch -c $*.o
.c.l :
$(HCCL64) -RS $(COPT) $(INCL) $*.c | $(TOPL64) -lvk8 - $*.o > $*.l
.s.l :
$(ASM86) -lk8 -mx $*.s
.cpp.s :
gcc $(GCCOPT) -S -o$*.s $*.cpp
.s.o :
$(ASM86) -lk8 -mx $*.s
.asm.o :
$(ASM86) -lk8 -mx $*.asm
.java :
gcj -march=k8 --main=$* -o $* $*.java
.o .o. :
# add -lstdc++ for C++ linking
ld -dynamic-linker /lib64/ld-linux-x86-64.so.2 -s -o $* \
/usr/lib64/crt1.o /usr/lib64/crti.o $(LIB)/crtbegin.o \
$*.o -lgcc -L$(LIB) -L/usr/lib64 -lc -lm -lpthread \
$(LIB)/crtend.o /usr/lib64/crtn.o
.o.map :
# add -lstdc++ for C++ linking
ld -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o $* -M \
/usr/lib64/crt1.o /usr/lib64/crti.o $(LIB)/crtbegin.o \
$*.o -lgcc -L$(LIB) -L/usr/lib64 -lc -lm -lpthread \
$(LIB)/crtend.o /usr/lib64/crtn.o > $*.map
all : udefrag
console.a :
cd console; make -f console.l64 console.a
udefrag.a :
cd dll/udefrag; make -f udefrag.l64 udefrag.a
zenwinx.a :
cd dll/zenwinx; make -f zenwinx.l64 zenwinx.a
wincalls.a :
cd wincalls; make -f wincalls.l64 wincalls.a
clean :
cd console; make -f console.l64 clean
cd dll/udefrag; make -f udefrag.l64 clean
cd dll/zenwinx; make -f zenwinx.l64 clean
cd wincalls; make -f wincalls.l64 clean
lists :
cd console; make -f console.l64 lists
cd dll/udefrag; make -f udefrag.l64 lists
cd dll/zenwinx; make -f zenwinx.l64 lists
cd wincalls; make -f wincalls.l64 lists
udefrag : $(A)
$(LD) -dynamic-linker /lib64/ld-linux-x86-64.so.2 -o udefrag -M \
/usr/lib64/crt1.o /usr/lib64/crti.o $(LIB)/crtbegin.o \
console/console.a dll/udefrag/udefrag.a dll/zenwinx/zenwinx.a \
wincalls/wincalls.a $(NTFS)/libntfs-3g/libntfs.a \
-lgcc -L$(LIB) -L/usr/lib64 -lc -lm -lpthread -lncurses \
$(LIB)/crtend.o /usr/lib64/crtn.o > udefrag.map