8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00

Make it build not with gcc only

This commit is contained in:
alexpeshkoff 2009-03-26 08:42:45 +00:00
parent 400d5c3b1c
commit 9de2ff57e6

View File

@ -8,16 +8,20 @@ DEST = .
HDRS = defs.h mstring.h
CFLAGS = -g -Wall -Wstrict-prototypes -Wmissing-prototypes
# Keep this as simple as possible. It's desirable that btyacc be portable
# across all of our supported compilers/platforms.
#LDFLAGS = -static
# Vanilla CFLAGS
CFLAGS=
LIBS =
# No LDFLAGS
#LDFLAGS=
CC = gcc
LINKER = gcc
# LINKER = cl
# CC = cl
LIBS=
# For GNU environment, gmake will set $CC to gcc
# Other environments will have different values, maybe no GNU installed!
#CC = gcc
MAKEFILE = Makefile
@ -38,7 +42,7 @@ OTHERS = README README.BYACC \
all: $(PROGRAM)
$(PROGRAM): $(OBJS) $(LIBS)
$(LINKER) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
$(CC) $(LDFLAGS) -o $(PROGRAM) $(OBJS) $(LIBS)
clean:; rm -f $(OBJS)