2004-06-23 23:35:39 +00:00
|
|
|
#
|
|
|
|
# This Makefile is compatible with GNU Make and has Winsock linking
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# Programs
|
|
|
|
#
|
|
|
|
|
|
|
|
CC = C:\Dev-Cpp\bin\gcc
|
2004-08-09 09:39:20 +00:00
|
|
|
RM = C:\Dev-Cpp\bin\rm
|
2004-06-23 23:35:39 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Flags
|
|
|
|
#
|
|
|
|
|
|
|
|
CFLAGS = -g -O2 -pipe -std=c99 -Wall
|
2004-07-31 23:31:02 +00:00
|
|
|
CFLAGS += -DWINSOCK
|
2004-08-27 01:29:18 +00:00
|
|
|
CFLAGS += -I../../inc -L../../lib
|
2004-06-23 23:35:39 +00:00
|
|
|
LIBS = -lsam -lwsock32
|
|
|
|
|
|
|
|
#
|
2004-08-09 09:39:20 +00:00
|
|
|
# Include the make instructions common to all platforms
|
2004-06-23 23:35:39 +00:00
|
|
|
#
|
|
|
|
|
2004-08-09 09:39:20 +00:00
|
|
|
include Makefile.common
|