Skip to content

Instantly share code, notes, and snippets.

View BayronVazquez's full-sized avatar
🏠
Working from home

Bayron Jonathan Vazquez BayronVazquez

🏠
Working from home
View GitHub Profile
@jofese
jofese / infijaPosfija
Created November 13, 2014 04:55
conversion de expresiones matematicas en notacion infija a notacion postfija
/*
Name: Convertir expresion matematica en notacion infija a postfija
Author: Joel Fernandez
Date: 16/11/12 20:29
Description: expresion matematica en notacion infija y la transforma a postfija
web: http://codebotic.blogspot.com
Compartido para casicodigo.blogspot.com
*/
@dradtke
dradtke / Makefile
Created April 25, 2012 22:35
Hello World example for Allegro.
CC := gcc
CFLAGS := -g -Wall
LIBS := -lallegro
SOURCES := $(shell find src/ -type f -name "*.c")
OBJECTS := $(SOURCES:.c=.o)
TARGET := game
all: $(SOURCES) $(TARGET)
$(TARGET): $(OBJECTS)