Files
i2p.itoopie/apps/sam/c/Makefile.mingw

48 lines
528 B
Makefile
Raw Normal View History

2004-06-20 11:44:53 +00:00
#
# This Makefile is compatible with GNU Make and should work on Windows (MingW)
#
#
# Your operating system
#
OS = MINGW
#
# Directories
#
INCDIR = inc
LIBDIR = lib
OBJDIR = obj
SRCDIR = src
#
# Programs
#
AR = C:\Dev-Cpp\bin\ar
CC = C:\Dev-Cpp\bin\gcc
2004-08-06 01:27:53 +00:00
RM = C:\Dev-Cpp\bin\rm
2004-06-20 11:44:53 +00:00
#
# Flags
#
2004-08-06 01:27:53 +00:00
CFLAGS = -g -O2 -pipe -std=c99 -Wall
2004-06-20 11:44:53 +00:00
CFLAGS += -DOS=$(OS)
CFLAGS += -I$(INCDIR)
#
# Object files
#
OBJS = $(OBJDIR)/sam.o \
$(OBJDIR)/strl.o
#
2004-08-06 01:27:53 +00:00
# Include the make instructions common to all platforms
2004-06-20 11:44:53 +00:00
#
2004-08-06 01:27:53 +00:00
include Makefile.common