root / Whitix / branches / hybrid / user / diskformat / Makefile

Revision 1, 276 bytes (checked in by mtw07, 9 months ago)

Initial import of projects.

Line 
1CFLAGS = -ffreestanding -fleading-underscore -fomit-frame-pointer -fno-builtin
2
3build:
4        gcc $(CFLAGS) -I../libc/include -c main.c -o main.o
5        ld -Bstatic -L../libc -L../librtl ../libc/init/init.o main.o -lstdc -lrtl -o diskformat
6        strip diskformat
7       
8clean:
9        rm *.o -f
Note: See TracBrowser for help on using the browser.