diff options
author | jonas <himself@jonasgunz.de> | 2019-02-04 14:53:18 +0100 |
---|---|---|
committer | jonas <himself@jonasgunz.de> | 2019-02-04 14:53:18 +0100 |
commit | a00fe50633ea4b8bfbbf9af9a4a9b1f120dfde00 (patch) | |
tree | b064516cac40e55932c75bf807ef57bdd0803e46 /Makefile | |
parent | 9d7f9525e89cb4e218c5bf5e529900fa6dc0fccc (diff) | |
download | AsciiMap-a00fe50633ea4b8bfbbf9af9a4a9b1f120dfde00.tar.gz |
Cleanups, addd rgb_avg
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,6 +4,8 @@ LDFLAGS = OUTPUT = bitmap BUILDDIR = build +FILE = 02 + OBJ = main.o build: $(OBJ) @@ -29,4 +31,4 @@ clean: rm -Rdf $(BUILDDIR) run: build - @LD_LIBRARY_PATH=../lib/ $(BUILDDIR)/$(OUTPUT) a.bmp a.txt + $(BUILDDIR)/$(OUTPUT) $(FILE).bmp $(FILE).txt |