moolticute-pass/examples/Makefile
Dominik Meyer 7b9afc1122 Squashed 'yaap/' content from commit 6ca46b5
git-subtree-dir: yaap
git-subtree-split: 6ca46b5b5febf8714348dcd1369328532a3b9e70
2019-08-01 18:11:54 +02:00

11 lines
149 B
Makefile

CFLAGS=-Wall
OBJECTS1=example1.o ../src/argparse.o
all: example1
%.o: %.c
gcc $(CFLAGS) -c -o $@ $<
example1: $(OBJECTS1)
gcc -o $@ $(OBJECTS1)