Browse Source

make popcorn

master
Alexander Avery 2 years ago
parent
commit
8ea32d33c4
  1. 10
      Makefile

10
Makefile

@ -0,0 +1,10 @@
CC = gcc
CFLAGS = -g -Wall
LIBS = -lssh
TARGET = popcorn
BUILDDIR = build
$(TARGET): $(TARGET).c
$(CC) $(CFLAGS) -o $(BUILDDIR)/$(TARGET) $(TARGET).c $(LIBS)
Loading…
Cancel
Save