6 lines
83 B
Makefile
6 lines
83 B
Makefile
CFLAGS?=-pedantic -O0 -s -Wall
|
|
CC?=cc
|
|
|
|
all:
|
|
$(CC) plainbin.c $(CFLAGS) -oplainbin
|