diff options
| author | Drew DeVault <sir@cmpwn.com> | 2021-12-09 14:36:32 +0100 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2021-12-09 14:36:32 +0100 |
| commit | 07046a3b2c2d0b6a5dfaaab70e5ea71e8334df1b (patch) | |
| tree | e134285c86f6052b9c19ae7755acafa0137e215b /Makefile | |
| parent | Add README.md (diff) | |
| download | hare-chip8-07046a3b2c2d0b6a5dfaaab70e5ea71e8334df1b.tar.gz | |
sdl2::image: initial commit
Some additional things which were needed to make this work were also
added.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,10 +1,12 @@ .POSIX: .SUFFIXES: +LIBS=-lc -lSDL2_image -lSDL2 + demo: - hare build -lSDL2 -lc -T+libc cmd/demo + hare build $(LIBS) -T+libc cmd/demo run: - hare run -lSDL2 -lc -T+libc cmd/demo + hare run $(LIBS) -T+libc cmd/demo .PHONY: demo run |
