Through ex1

This commit is contained in:
Dan Buch 2016-04-11 23:21:45 -04:00
parent 2fc502900f
commit 6e6507ad38
3 changed files with 7 additions and 1 deletions

View File

@ -3,4 +3,4 @@ FROM ubuntu:xenial
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -yq RUN apt-get update -yq
RUN apt-get install -yq build-essential git RUN apt-get install -yq build-essential git man

View File

@ -0,0 +1,4 @@
CFLAGS=-Wall -g
clean:
rm -f ex1

View File

@ -1,3 +1,5 @@
#include <stdio.h>
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
puts("Hello world."); puts("Hello world.");