yaap/examples/Makefile

11 lines
149 B
Makefile
Raw Permalink Normal View History

2018-03-31 00:43:37 +02:00
CFLAGS=-Wall
OBJECTS1=example1.o ../src/argparse.o
all: example1
%.o: %.c
gcc $(CFLAGS) -c -o $@ $<
example1: $(OBJECTS1)
gcc -o $@ $(OBJECTS1)