mirror of
https://github.com/massgravel/hwid-stuff.git
synced 2024-11-23 05:49:43 +00:00
7 lines
98 B
Makefile
7 lines
98 B
Makefile
|
GCCOPT=-O0 -Wall -pedantic
|
||
|
GCC=gcc
|
||
|
|
||
|
all: hwid_dec
|
||
|
|
||
|
hwid_dec: hwid_dec.c
|
||
|
$(GCC) $(GCCOPT) $< -o $@
|