Subversion Repositories SvarDOS

Compare Revisions

Ignore whitespace Rev 183 → Rev 184

/buildidx/Makefile
0,0 → 1,9
CFLAGS = -O3 -std=gnu89 -Wall -Wextra -pedantic
 
all: buildidx
 
buildidx: buildidx.c
gcc buildidx.c -o buildidx $(CFLAGS)
 
clean:
rm -f buildidx *.o