diff options
| author | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-04-28 17:50:36 +1000 |
|---|---|---|
| committer | TazyFoundSoup <gardendistrict0x0@outlook.com> | 2026-04-28 17:50:36 +1000 |
| commit | 79592de3bd0e18e0b11327290bf97911d3752d0a (patch) | |
| tree | 3fda218f0a93003d409b69d3a1fd2085c1bc1b62 | |
| parent | d0dc45d24f6c7d210920fa918c94b93642525dca (diff) | |
chore(Makefile): Change OUTDIR from dist/ to build/
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ # so just remember to put all executables in the dist/ directory. -dist/* +build/* .cache/* tests/logs/* bench/dist/* @@ -1,7 +1,7 @@ CC ?= gcc AR ?= ar -OUTDIR = dist +OUTDIR = build BENCH_OUT = $(OUTDIR)/bench LIB = libtinyff.a @@ -46,7 +46,7 @@ asan: clean $(OUTDIR)/$(LIB) test-png: clean $(MAKE) USE_HOSTED=1 debug - $(CC) $(ALL_CFLAGS) $(DEBUG_FLAGS) -DUSE_HOSTED tests/format/image/png/png_open.c -o $(OUTDIR)/png_test -Ldist -ltinyff && ./$(OUTDIR)/png_test + $(CC) $(ALL_CFLAGS) $(DEBUG_FLAGS) -DUSE_HOSTED tests/format/image/png/png_open.c -o $(OUTDIR)/png_test -L$(OUTDIR) -ltinyff && ./$(OUTDIR)/png_test test: test-png |
