ObjGUI  Check-in [d73b4f5e50]

Overview
Comment:Clean up win32 Makefile.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d73b4f5e50998aa0ad23f3adeb3a2e9e6b70469e4e2f3c61c1472304bfee5b81
User & Date: js on 2012-01-05 15:13:54
Other Links: manifest | tags
Context
2012-01-05
15:38
Update .hgignore. check-in: 13d403c9f3 user: js tags: trunk
15:13
Clean up win32 Makefile. check-in: d73b4f5e50 user: js tags: trunk
15:08
Clean up headers a little. check-in: ab5fc3316f user: js tags: trunk
Changes

Modified win32/Makefile from [99a786d626] to [62637a705e].

1
2
3
4
5
6
7
8
9
10
11
12
PREFIX ?= /usr/local

all : test.exe

%.o : %.m
	gcc -g -DOG_WIN32 -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


|
|
<
<

<
<
<

|
1
2
3
4


5



6
7
PREFIX ?= /usr/local

test:
	@objfw-compile -DOG_WIN32 -Wall -g -o test -I../headers *.m






clean :
	rm -f *.exe *.o *~