root / Whitix / branches / hybrid / user / fruity / Makefile

Revision 333, 466 bytes (checked in by mwhitworth, 7 months ago)

Fix sort call to kernel.txt

Line 
1CFLAGS = -Wall -O2 -fomit-frame-pointer -fno-builtin -nostdinc -I../libc/include -I../librtl/ -I../sdk/include -fno-stack-protector -m32
2
3.c.o:
4        $(CC) $(CFLAGS) -c $*.c -o $*.o
5
6OBJS = main.o file.o
7
8build: $(OBJS)
9        gcc -m32 -nodefaultlibs -nostdlib  -L../libc -L../librtl -L../posix -lpthread -L../sdk/libs ../libc/init/init.o $(OBJS) -lconsole -lstdc -lrtl -Wl,-I,/Linker -o fruity
10
11clean:
12        rm -rf *.o
13        rm -rf fruity
14
15install:
16        cp fruity ../../CdRoot/Applications
Note: See TracBrowser for help on using the browser.