diff options
| author | Jan Sucan <jan@jansucan.com> | 2021-05-02 10:19:23 +0200 |
|---|---|---|
| committer | Jan Sucan <jan@jansucan.com> | 2021-05-02 10:20:29 +0200 |
| commit | 02ffe0ed4113e7b479197d0ba1b160e6280b4099 (patch) | |
| tree | c7a3573039ba02983eec38267d61d86e1965bbab /src/Makefile | |
| parent | 36a92af6ee3c20c93835a34ddeb148c34ccf023c (diff) | |
Move the source files to a src directory
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..8b24b35 --- /dev/null +++ b/src/Makefile @@ -0,0 +1,19 @@ +CC=gcc +CFLAGS=-Wall + +SOURCES=*.c +HEADERS=*.h + +all: $(PROGRAM_NAME) + +$(PROGRAM_NAME): $(SOURCES) $(HEADERS) program_info.h + $(CC) $(CFLAGS) -o $(PROGRAM_NAME) $(SOURCES) + +program_info.h: + echo "#define PROGRAM_NAME_STR \"$(PROGRAM_NAME)\"" >program_info.h + echo "#define PROGRAM_VERSION_STR \"$(PROGRAM_VERSION)\"" >>program_info.h + +.PHONY: clean + +clean: + rm -f *.o *~ $(PROGRAM_NAME) program_info.h |
