File: Makefile

package info (click to toggle)
4digits 1.1.2-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 684 kB
  • sloc: python: 397; ansic: 225; makefile: 12
file content (11 lines) | stat: -rw-r--r-- 206 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
# Makefile for 4digits
all: 4digits-text

CC = gcc
CFLAGS = -Wall -std=c99 -pedantic
SHELL = /bin/sh

4digits-text: 4digits-text.c
	$(CC) $(CFLAGS) 4digits-text.c -o 4digits-text
clean:
	rm -f 4digits-text