You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
206 B
Makefile

CC=gcc
CFLAGS=-Wall -O1 -Wpadded
PROGRAMS=pixel struct2
all: $(PROGRAMS)
pixel:
$(CC) -o pixel $(CFLAGS) pixel.c
struct2:
$(CC) -o struct2 $(CFLAGS) struct2.c
clean:
rm -f $(PROGRAMS)
.PHONY=clean