This repository has been archived on 2024-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
probotic/Makefile
2023-08-04 09:13:47 -06:00

12 lines
263 B
Makefile

# note that this file does not properly handle options
SRC := api.c irc.c main.c parse.c unity.c
HDR := api.h error.h irc.h irccolors.h parse.h stmt.h
DEBUG := 1
probotic: $(SRC) $(HDR)
DEBUG=$(DEBUG) ./build.sh
# do nothing but update them...
$(SRC) $(HDR):