mirror of
https://github.com/massgravel/hwid-stuff.git
synced 2024-11-22 21:39:45 +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 $@
|