mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-26 11:28:28 +00:00
10 lines
116 B
Makefile
10 lines
116 B
Makefile
|
CC := $(CROSS_COMPILE)gcc
|
||
|
CFLAGS := -I../../usr/include
|
||
|
|
||
|
PROGS := crc32hash
|
||
|
|
||
|
all: $(PROGS)
|
||
|
|
||
|
clean:
|
||
|
rm -fr $(PROGS)
|