mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-01 00:23:35 +00:00
41 lines
761 B
Plaintext
41 lines
761 B
Plaintext
|
# Copyright (C) 2001-2005 by David A. Capello -*-Makefile-*-
|
||
|
|
||
|
######################################################################
|
||
|
# Flags for GCC in GNU/Linux system
|
||
|
|
||
|
CFLAGS =
|
||
|
LFLAGS = `allegro-config --libs`
|
||
|
|
||
|
######################################################################
|
||
|
# GCC stuff
|
||
|
|
||
|
CC = gcc
|
||
|
OBJ = .o
|
||
|
LIB = .a
|
||
|
EXE =
|
||
|
JINETE_SUFFIX = unix
|
||
|
|
||
|
include makefile.lst
|
||
|
include makefile.gcc
|
||
|
|
||
|
######################################################################
|
||
|
# General rules
|
||
|
|
||
|
.PHONY = default all install uninstall clean distclean
|
||
|
|
||
|
default: all
|
||
|
|
||
|
all: $(JINETE_LIB) $(JINETE_EXAMPLES_EXES)
|
||
|
|
||
|
install:
|
||
|
|
||
|
uninstall:
|
||
|
|
||
|
clean:
|
||
|
-rm -f $(JINETE_OBJS) $(JINETE_EXAMPLES_OBJS)
|
||
|
|
||
|
distclean: clean
|
||
|
-rm -f $(JINETE_LIB) $(JINETE_EXAMPLES_EXES)
|
||
|
|
||
|
-include makefile.dep
|