mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
15 lines
347 B
Makefile
15 lines
347 B
Makefile
CEOPT_ROOT ?= /opt
|
|
|
|
CE_ARCH = arm-mingw32ce
|
|
CC = $(CE_ARCH)-gcc
|
|
|
|
LFLAGS += -Wl,--major-subsystem-version,4,--minor-subsystem-version,20
|
|
CFLAGS += -D_WIN32_WCE=0x0400 -D__W32API_USE_DLLIMPORT__
|
|
CELIBS = -L${CEOPT_ROOT}/${CE_ARCH}/lib/ -lws2
|
|
|
|
messagebox.exe: messagebox.c
|
|
$(CC) $(CFLAGS) $(LFLAGS) $^ $(CELIBS) -o $@
|
|
|
|
|
|
clean:
|
|
rm -f messagebox.exe
|