mirror of
https://github.com/kgabis/parson.git
synced 2025-02-05 17:05:29 +00:00
Added makefile.
This commit is contained in:
parent
b2dbaece40
commit
962d9f13ba
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
||||
.DS_Store
|
||||
.DS_Store
|
||||
test
|
11
Makefile
Normal file
11
Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
CFLAGS = -O0 -g -Wall -Wextra -std=c89 -pedantic-errors
|
||||
|
||||
all: test
|
||||
|
||||
.PHONY: test
|
||||
test: tests.c parson.c
|
||||
$(CC) $(CFLAGS) -o $@ tests.c parson.c
|
||||
./$@
|
||||
|
||||
clean:
|
||||
rm -f test *.o
|
Loading…
Reference in New Issue
Block a user