mirror of
https://github.com/deater/tb1.git
synced 2025-01-23 20:30:42 +00:00
12 lines
195 B
Makefile
12 lines
195 B
Makefile
|
# Makefile for sstrip
|
||
|
|
||
|
ifeq ($(ARCH),)
|
||
|
ARCH = $(shell uname -m)
|
||
|
endif
|
||
|
|
||
|
sstrip: sstrip.c
|
||
|
gcc -ggdb -Wall -W -DARCHITECTURE=\"asm_elf_$(ARCH).h\" -o sstrip sstrip.c
|
||
|
|
||
|
clean:
|
||
|
rm -f sstrip *~ *.o
|