kolibrios/programs/develop/libraries/libGUI/SRC/compilation/cygwin/Makefile
vkos 1560e4ca7a Replaced meneger with manager, corrected makefile to work on x86-64
git-svn-id: svn://kolibrios.org@1223 a494cfbc-eb01-0410-851d-a64ba20cac60
2009-10-21 15:47:20 +00:00

12 lines
277 B
Makefile

SRC = libGUI.c
TARGET = libGUI.obj
CFLAGS = -O2 -nostdinc -nostdlib -m32 -march=i686 -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)