win32 branch commit

This commit is contained in:
Dillon Aumiller 2012-01-04 20:22:08 -06:00
parent 3a0d3fd94e
commit bbbeb0bebe
15 changed files with 1337 additions and 1 deletions

12
win32/Makefile Normal file
View file

@ -0,0 +1,12 @@
PREFIX ?= /usr/local
all : test.exe
%.o : %.m
gcc -g -DOG_W32 -I../headers -c -o $@ $^ `objfw-config --cppflags --objcflags`
test.exe : OGApplication.o OGWidget.o OGWindow.o OGBox.o OGVBox.o OGHBox.o OGButton.o OGComboBox.o OGComboBoxItem.o test.o
gcc -mwindows -o test.exe *.o `objfw-config --libs`
clean :
rm -f *.exe *.o