mirror of
https://github.com/wwarthen/RomWBW.git
synced 2026-02-06 14:11:48 -06:00
Thanks and credit to Paul de Bak for providing the compression utility. Co-Authored-By: PauldB <169483608+p42db@users.noreply.github.com>
13 lines
166 B
Makefile
13 lines
166 B
Makefile
APP := compress
|
|
OBJS := compress.o
|
|
UNAME := $(shell uname)
|
|
|
|
all: $(APP)
|
|
cp -p $(APP) ../../$(UNAME)
|
|
|
|
$(APP): $(OBJS)
|
|
$(CC) $^ -o $@
|
|
|
|
clean:
|
|
@rm -rf $(APP) $(OBJS)
|