diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-05-30 23:32:52 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-05-30 23:32:52 +0100 |
commit | cbeff523d3c01471fcddfbf713b5d8d9e36dc1a9 (patch) | |
tree | ea96fc1371df2abae24b09954997277f762cad57 /src/Makefile | |
parent | d6cce83a4c5a6540f0b32e3bca9fb56c1f8855d1 (diff) | |
download | gold-mine-run-cbeff523d3c01471fcddfbf713b5d8d9e36dc1a9.tar.gz gold-mine-run-cbeff523d3c01471fcddfbf713b5d8d9e36dc1a9.zip |
pngpal tool and first stab at embedding data on the EXE
WIP; the embedded data has an "environ" symbol that will cause issues
when we embed more than one piece of data.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 94b83eb..a53c697 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,7 +4,7 @@ CFLAGS := -I. -c -Wall -pedantic -O2 -march=i386 LDFLAGS := -s SRCS := $(wildcard *.c) -OBJS := $(SRCS:.c=.o) +OBJS := $(SRCS:.c=.o) palette.o all: $(BIN) @@ -14,6 +14,9 @@ $(BIN): $(OBJS) .c.o: $(CC) $(CFLAGS) $< -o $@ +palette.o: ../data/sprites.png + ../tools/pngpal.py $< $@ + clean: rm -f $(BIN) *.o Makefile.deps |