# $Id: makefile.emx,v 1.6 2002/10/04 06:22:46 sfpavel Exp $
#
# Legacy makefile for IBM OS/2 + EMX Runtime library
# Do not support husky build enviroment
.PHONY: default
CC=gcc
OBJ=.o
RM=del
EXE=.exe
CFLAGS = -DOS2 -I. -I../.. -c -O3
LFLAGS = -Zcrtdll
LIBS =../../fidoconf/fconfemx.a ../../smapi/smapiemx.a
.SUFFIXES:
.SUFFIXES: .c .o .exe
.c.o:
$(CC) $(CFLAGS) -c $<
include makefile.inc
all: commonprogs
default: all
clean: commonclean
-$(RM) $(OBJS)
distclean: clean commondistclean
syntax highlighted by Code2HTML, v. 0.9.1