This repository has been archived on 2025-02-12. You can view files and clone it, but cannot push or open issues or pull requests.
NeoStats-NeoIRCd/iauth/Makefile.in

23 lines
386 B
Makefile
Raw Permalink Normal View History

2002-08-13 14:34:25 +00:00
# IAuth Makefile (C) Patrick Alken 1999
2002-08-13 14:45:13 +00:00
# $Id: Makefile.in,v 1.2 2002/08/13 14:45:08 fishwaldo Exp $
2002-08-13 14:34:25 +00:00
CC = @CC@
CFLAGS = @IRC_CFLAGS@ -DIRCD_PREFIX=\"@prefix@\"
RM = @RM@
#CFLAGS = -g -Wall
all: source
@cd source ; $(MAKE) "CC=$(CC)" "CFLAGS=$(CFLAGS)"
build: all
clean:
@cd source ; $(MAKE) clean
distclean:
@cd source ; $(MAKE) distclean
${RM} -f Makefile
# End of Makefile