source: trunk/src/gdllshell/Makefile.OS2.libc@ 220

Last change on this file since 220 was 199, checked in by bird, 21 years ago

...

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 400 bytes
Line 
1# $Id: Makefile.OS2.libc 199 2004-12-17 04:51:58Z bird $
2
3OBJDIR = objdir/OS2.libc
4OBJDIR = .
5SRC = gdllshell.c
6OBJS = $(addprefix $(OBJDIR)/, $(SRC:.c=.obj))
7
8CFLAGS = -Zomf -g -DMAKE_DLLSHELL -Wall
9ifndef DEBUG
10CFLAGS += -O3
11endif
12
13all: $(OBJDIR) gdllshl.dll
14
15
16gdllshl.dll: $(OBJS) gdllshl.os2.def
17 gcc -g $(CFLAGS) -Zdll -Zhigh-mem -o $@ $(OBJS) gdllshl.os2.def
18
19.c.obj:
20 gcc -c $(CFLAGS) -o $@ -DHAVE_CONFIG_H $<
21
22$(OBJDIR):
23 mkdir -p $@
24
Note: See TracBrowser for help on using the repository browser.