
#                Makefile for the REPSTR utility (Win32 / MinGW)

#                    Copyright (C) L. Menczel, 2006
#                          menczel@invitel.hu

CCDIR =

src_dir = ../src

CC  = $(CCDIR)/bin/gcc.exe

all: repstr

repstr: $(src_dir)/repstr.c
	$(CC) -Wall -o repstr.exe -I../mutil $(src_dir)/repstr.c \
   -L. libmutil.a
	strip repstr.exe
