kolibrios/programs/develop/new libGUI_C/SRC/compilation/cygwin/Makefile
andrew_programmer cbfb59ad64 Controls ScrolledWindow and ProgressBar render in buffer befor screen output.
Some size and speed optimizations and some bugfixes.

git-svn-id: svn://kolibrios.org@1163 a494cfbc-eb01-0410-851d-a64ba20cac60
2009-09-17 20:35:39 +00:00

12 lines
242 B
Makefile

SRC = libGUI.c
TARGET = libGUI.obj
CFLAGS = -O2 -nostdinc -nostdlib -march=pentium -fomit-frame-pointer -fno-builtin
CC = gcc
all:
$(CC) -c $(SRC) $(CFLAGS) -o $(TARGET)
strip -X --strip-unneeded $(TARGET)
clean:
rm *.obj
rm $(TARGET)