bugfix of last SVN revision

git-svn-id: svn://kolibrios.org@1176 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
andrew_programmer
2009-09-24 22:01:05 +00:00
parent 82495158d4
commit 66bf88987d
48 changed files with 17101 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
SRC = libGUI.c
TARGET = libGUI.obj
CFLAGS = -O2 -nostdinc -nostdlib -march=pentium -fomit-frame-pointer -fno-builtin -fno-builtin-printf
CC = gcc
all:
$(CC) -c $(SRC) $(CFLAGS) -o $(TARGET)
strip -x -S $(TARGET)
$(CC) -S $(SRC) $(CFLAGS)
clean:
rm $(TARGET)