Subversion Repositories Kolibri OS

Rev

Rev 4767 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4769 right-hear 1
include osrules.mak
2
 
4767 right-hear 3
.SUFFIXES: .asm;
4
 
5
OBJS = crt0.o
6
 
7
all: $(OBJS)
8
 
4769 right-hear 9
ifdef ON_WINDOWS
4767 right-hear 10
crt0.o: crt0_$(STUBFMT).asm
4769 right-hear 11
	fasm crt0_$(STUBFMT).asm crt0.o
12
else
13
crt0.o: crt0_$(STUBFMT)_nounderscores.asm
14
	fasm crt0_$(STUBFMT)_nounderscores.asm crt0.o
15
endif
4767 right-hear 16
 
17
clean:
18
	$(RM) $(OBJS)