dotfiles/fake_home/vim_templates/makefile

10 lines
95 B
Makefile
Raw Normal View History

CC=gcc
CFLAGS=-I.
MAIN=hello
nonnull: $(MAIN).o
$(CC) -o $(MAIN) $(MAIN).o
clean:
rm ./*.o